0

Python的Easy Install并不是那么容易。python.org的说明提供了一个命令,该命令将 python 版本通过管道传输到安装程序中。只有在安装之后,我才了解了 easy_install 和"Multiple Python Versions"。我以为我被覆盖了,因为根据这个页面easy_install 应该使用命令支持多个版本的 pythoneasy_install-x.y

查看 bin 目录,我拥有/usr/bin/easy_install-3.3适用于 python3.3 和/usr/bin/easy_install适用于...3.3 的目录!在哪里easy_install-2.7?显然它没有安装,因为其他页面提供了简单的安装说明来为您的 python 安装“下载适当的版本”。两条指令相互矛盾。

那我现在该怎么办?

4

1 回答 1

0

我的猜测是你的环境的“python”命令启动了 python3.x。如果是这样,easy_install 会安装到您选择的 python 版本中,所以当您执行此操作时:

wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python

你可能应该像这样指定python2.7:

wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python2.7
于 2013-10-26T00:34:15.250 回答