在不同版本的python中安装pip

时间:2014-07-15 13:00:54

标签: python-2.7 pip virtualenv python-2.5

我安装了多个版本的Python(2.5,2.7)。我正在使用Ubuntu。 Python2.7是我的默认Python解释器。因此像PIL这样的所有软件包都安装在python2.7中。现在我想在Python 2.5版本中安装一些软件包。 我需要安装Pip,以便我可以安装软件包。现在我明白有些人会给出virtualenv的建议。我也试过了。 但是通过它安装Pil也不会显示python2.5版本中的软件包。它安装在python2.7版本中。所以我需要做一些事情,以便当pip安装包时,它将它安装在Python2.5版本中。有什么建议吗?

我也试过这个:

python2   -m pip install SomePackage  # default Python 2
python2.5 -m pip install SomePackage  # specifically Python 2.5

但它没有名为pip的模块

1 个答案:

答案 0 :(得分:1)

根据这个答案:pip: dealing with multiple Python versions?

如果pip> = 1.5:

,你必须尝试这样做
$ pip2.5 install SomePackage 
$ pip2.7 install SomePackage 

否则:

$ pip-2.5 install SomePackage  
$ pip-2.7 install SomePackage