3

パッケージ easy_install をインストールしようとすると、配布をアップグレードするように求められました。

The required version of distribute (>=0.6.35) is not available,
and can't be installed while this script is running. Please
install a more recent version first, using
'easy_install -U distribute'.

これはうまくいくように見えました:

$ easy_install -U distribute
Searching for distribute
Reading http://pypi.python.org/simple/distribute/
Best match: distribute 0.7.3
Processing distribute-0.7.3-py2.7.egg
Removing distribute 0.6.28 from easy-install.pth file
Adding distribute 0.7.3 to easy-install.pth file

Using /xxx/software/lib/python2.7/site-packages/distribute-0.7.3-py2.7.egg
Processing dependencies for distribute
Finished processing dependencies for distribute

しかし今、easy_install を開始すると、次のようになります。

$ easy_install
Traceback (most recent call last):
  File "/xx/software/bin/easy_install", line 9, in <module>
    load_entry_point('distribute', 'console_scripts', 'easy_install')()
  File "/xx/software/lib/python2.7/site-packages/setuptools-1.1.6-py2.7.egg/pkg_resources.py", line 357, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/xx/software/lib/python2.7/site-packages/setuptools-1.1.6-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

どうしたの?これを修正するにはどうすればよいですか

4

3 に答える 3

3

セットアップ ツールを手動で更新してみてください。

wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
sudo python ez_setup.py --user
于 2013-10-23T20:51:00.883 に答える
2

pip と easy_install に関する別の質問への回答に従って、easy_install でインストールされたパッケージを pip を使用してアンインストールできます。

sudo pip uninstall distribute

これにより、ディストリビューションの問題のあるバージョンが削除され、easy_install が再び機能するようになりました。

于 2014-03-05T14:37:38.433 に答える
0

私は同じ問題を抱えていましたが、easy_install-2.7があり、パッケージを適切にインストールできることがわかりました。

于 2013-12-17T20:31:40.240 に答える