用Python安装包

时间:2016-01-15 10:22:13

标签: python python-2.7 python-3.x pip easy-install

我的笔记本电脑安装了python 2.7和python 3.5。当我安装一个包并使用例如:

pip install thunder-python

easy_install thunder

在命令提示符下为python 3.5安装软件包。如何安装软件包以便在python 2.7中使用它们?我使用的是Windows 10。

2 个答案:

答案 0 :(得分:0)

在系统设置中将C:\Python27\Scripts添加到PATH,您就可以运行:

pip3 thunder安装Python 3.x的包

pip2 thunderpip2.7 thunder为Python 2.7安装软件包。

不修改PATH,对于Python 2.7,您可以直接运行命令:

C:\Python27\Scripts\pip thunder

修改PATH pip命令后,将从首先找到的目录中调用,所以如果你将Python2.7目录添加到最后,你将pip运行pip对于Python3,如果你在开始时添加Python2.7,那么你将获得Project ├── logs.txt ├── requirements.txt └── project ├── db.sqlite3 ├── manage.py ├── miscellaneousConfig ├── README.md ├── static │   ├── css │   ├── img │   ├── js ├── abc1 │   ├── admin.py │   ├── __init__.py │   ├── migrations │   │   └── __init__.py │   ├── models.py │   ├── templates │   │   ├── file1.html │   │   └── file2.html │   ├── tests.py │   ├── urls.py │   └── views.py └── abc ├── functions.py ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py 来运行Python2.7。

答案 1 :(得分:0)

如何使用pyenv? 如果您使用它,您可以更改和切换版本并安装这样的包。

$ pyenv local 2.7.X
$ pip install thunder-python

之后

$ pyenv local 3.5.X
$ pip install thunder-python