1

我有一个运行 python2.7 的 Ubuntu 12.04 x64 服务器版 VM,并尝试通过命令安装 MySQLdb 包(我已经easy_install安装并工作):

$ sudo easy_install MySQL-python

但是当easy_install尝试编译时出现以下回溯错误:

Traceback (most recent call last):
   File "/usr/local/bin/easy_install", line 9, in <module>
      load_entry_point('distribute', 'console_scripts', 'easy_install')()
   File "/usr/local/lib/python2.7/dist-packages/setuptools-1.1-py2.7.egg/pkg_resources.py", line 357, in load_entry_point
      return get_distribution(dist).load_entry_point(group, name)
   File "/usr/local/lib/python2.7/dist-packages/setuptools-1.1-py2.7.egg/pkg_resources.py", line 2393, in load_entry_point
      raise ImportError("Entry point %r not found" % ((group,name),))
ImportError: Entry point ('console_scripts', 'easy_install') not found

我的/usr/local/lib/python2.7/dist-packages显示安装了以下软件包:

  • 分发-0.7.3-py2.7.egg
  • 易于安装.pth
  • pyinotify-0.9.4-py2.7.egg
  • setuptools-1.1-py2.7.egg
  • 安装工具.pth

我不确定从这里去哪里,或者为什么我什至会收到这个错误。我也不确定这个问题是否更适合 ServerFault;但是,由于我在编写一些代码时遇到了这个问题,我想也许其他一些编码人员以前也遇到过这个问题......(当时似乎合乎逻辑)

4

2 回答 2

2

您似乎已经安装了distributesetuptools,您的easy_install脚本尝试从 加载入口点distribute,但setuptools首先找到了。

您应该删除distribute,因为它已被合并回setuptools并且现在已过时。之后您可能需要重新安装才能使一切重新setuptools正常工作。

于 2013-09-03T17:33:11.227 回答
2

尝试以下操作:

curl -O http://python-distribute.org/distribute_setup.py
sudo python distribute_setup.py

然后再次运行 sudo easy_install MySQL-python。

于 2013-11-25T08:55:43.547 回答