I’ve installed cx_Oracle (repeatedly) and I just can’t get it to work on my Intel Mac. How do I deactivate/uninstall it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You simply delete the
.eggfileOn OS X they are installed into
/Library/Python/2.5/site-packages/– in that folder you should find a file namedcx_Oracle.eggor similar. You can simple delete this file and it will be gone.One way of finding the file is, if you can import the module, simply displaying the
repr()of the module:If the import fails, the traceback should show the location of the module also.
One thing to note, if the module installed any command-line tools, you’ll have to remove these manually also.. On OS X they are installde in
/usr/local/bin/– you can find any tool which usescx_Oracleusing grep:Or simply..