如何停用鸡蛋?
我已经(反复)安装了 cx_Oracle,但无法让它在我的 Intel Mac 上运行。 如何停用/卸载它?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需删除
.egg
文件在 OS X 上,它们被安装到
/Library/Python/2.5/site-packages/
- 在该文件夹中您应该找到一个名为 < code>cx_Oracle.egg 或类似的。 您可以简单地删除该文件,它就会消失。查找文件的一种方法是,如果您可以导入该模块,只需显示该模块的
repr()
:如果导入失败,回溯也应该显示该模块的位置。
需要注意的一件事是,如果模块安装了任何命令行工具,您还必须手动删除这些工具。在 OS X 上,它们安装在
/usr/local/bin/
中 - 您可以使用 grep 查找使用cx_Oracle
的任何工具:或者简单地..
You simply delete the
.egg
fileOn OS X they are installed into
/Library/Python/2.5/site-packages/
- in that folder you should find a file namedcx_Oracle.egg
or 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_Oracle
using grep:Or simply..