如何停用鸡蛋?

发布于 2024-07-21 20:08:17 字数 62 浏览 5 评论 0原文

我已经(反复)安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国产ˉ祖宗 2024-07-28 20:08:17

您只需删除 .egg 文件

在 OS X 上,它们被安装到 /Library/Python/2.5/site-packages/ - 在该文件夹中您应该找到一个名为 < code>cx_Oracle.egg 或类似的。 您可以简单地删除该文件,它就会消失。

查找文件的一种方法是,如果您可以导入该模块,只需显示该模块的 repr()

>>> import urllib
>>> urllib
<module 'urllib' from '/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib.pyc'>
>>> import BeautifulSoup
>>> BeautifulSoup
<module 'BeautifulSoup' from '/Library/Python/2.5/site-packages/BeautifulSoup-3.0.6-py2.5.egg/BeautifulSoup.py'>

如果导入失败,回溯也应该显示该模块的位置。

需要注意的一件事是,如果模块安装了任何命令行工具,您还必须手动删除这些工具。在 OS X 上,它们安装在 /usr/local/bin/ 中 - 您可以使用 grep 查找使用 cx_Oracle 的任何工具:

cd /usr/local/bin/
grep EASY-INSTALL * | grep cx_Oracle

或者简单地..

cd /usr/local/bin/
grep cx_Oracle *

You simply delete the .egg file

On OS X they are installed into /Library/Python/2.5/site-packages/ - in that folder you should find a file named cx_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:

>>> import urllib
>>> urllib
<module 'urllib' from '/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/urllib.pyc'>
>>> import BeautifulSoup
>>> BeautifulSoup
<module 'BeautifulSoup' from '/Library/Python/2.5/site-packages/BeautifulSoup-3.0.6-py2.5.egg/BeautifulSoup.py'>

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 uses cx_Oracle using grep:

cd /usr/local/bin/
grep EASY-INSTALL * | grep cx_Oracle

Or simply..

cd /usr/local/bin/
grep cx_Oracle *
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文