我有3个python版本,我想使用第二个版本easy_install Orange。我怎么能这样做?
不必要的信息:
答案: 好的,发现它是here(http://peak.telecommunity.com/DevCenter/EasyInstall#multiple-python-versions),
“另外,如果您使用的是Python 2.4或更高版本,则可以使用-m easy_install运行Python来运行该特定Python版本的easy_install命令”
答案 0 :(得分:49)
这样答案很容易找到:
之后使用带有m参数的“Python-version”和easy_install可以解决问题。
示例:
python2.7 -m easy_install https://bitbucket.org/james_taylor/bx-python/get/tip.tar.bz2
答案 1 :(得分:12)
easy_install通常/始终按Python版本安装。因此,您要为此处要使用的特定Python版本/解释器运行相关版本的easy_install。
答案 2 :(得分:5)
假设你的python版本是3.5。然后,您可以使用命令easy_install-3.5
,后跟您愿意下载/安装的模块的名称。请参阅文档here。
答案 3 :(得分:2)
从文档中,除了报告的选项
python2.7 -m easy_install
还有:
如果为Python 2.3和2.4安装EasyInstall,则可以使用easy_install-2.3或easy_install-2.4脚本来安装Python 2.3或2.4的软件包