我的笔记本电脑安装了python 2.7和python 3.5。当我安装一个包并使用例如:
pip install thunder-python
或
easy_install thunder
在命令提示符下为python 3.5安装软件包。如何安装软件包以便在python 2.7中使用它们?我使用的是Windows 10。
答案 0 :(得分:0)
在系统设置中将C:\Python27\Scripts
添加到PATH
,您就可以运行:
pip3 thunder
安装Python 3.x的包
和
pip2 thunder
或pip2.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