我最初有64位Python,然后使用easy_install
安装了BeautifulSoup。
出于某种原因,我使用this method卸载了64位Python。然后我从Python.org重新安装了32位版本。但是:
Kit:~ Kit$ easy_install beautifulsoup
Searching for beautifulsoup
Best match: BeautifulSoup 3.2.0
Processing BeautifulSoup-3.2.0-py2.6.egg
BeautifulSoup 3.2.0 is already the active version in easy-install.pth
Using /Library/Python/2.6/site-packages/BeautifulSoup-3.2.0-py2.6.egg
Processing dependencies for beautifulsoup
Finished processing dependencies for beautifulsoup
这是一个令人讨厌的迹象,我还没有真正找到一种简单的方法来干净地在OS X上卸载Python。此外,它提到了BeautifulSoup for Python 2.6 ,但是我有 2.7 。悲伤:(
如何重置easy-install.pth
?我在Spotlight上找不到它。
答案 0 :(得分:1)
看起来你正在从系统Python 2.6运行easy_install
。 Apple向操作系统发送easy_install
。如果您刚从python.org安装了Python 2.7,则需要为该版本安装distribute。 (请注意,您需要以root身份执行此操作,以便可以写入/usr/local/bin
。)还有Python版本后缀easy_install
版本,例如easy_install-2.6
,所以如果由于某种原因你想在系统Python中安装一个软件包,那么你仍然可以这样做。
另外,请调查具有卸载功能的pip。