我有一个运行 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;但是,由于我在编写一些代码时遇到了这个问题,我想也许其他一些编码人员以前也遇到过这个问题......(当时似乎合乎逻辑)