如何使用特定的 python 版本运行 easy_install
我有 3 个 python 版本,我想使用第二个版本来 easy_install Orange。我该怎么做?
不必要的信息:
- /usr/bin/python 中的 2.1
- /Library/Frameworks/Python.framework/Versions/2.6/bin/python 中的
- 2.6 /Library/Frameworks/Python.framework/Versions/3.1/bin/python 中的 3.1
答案: 好的,在这里找到了它(http://peak.telecommunity.com/DevCenter/EasyInstall#multiple-python-versions),
“此外,如果您使用的是 Python 2.4 或更高版本,则可以运行 Python使用 -m easy_install 来运行特定 Python 版本的 easy_install 命令”
I have 3 python versions, I want to easy_install Orange using the second version. How can I do this?
Unnecessary info:
- 2.1 in /usr/bin/python
- 2.6 in /Library/Frameworks/Python.framework/Versions/2.6/bin/python
- 3.1 in /Library/Frameworks/Python.framework/Versions/3.1/bin/python
Answer:
Ok found it here (http://peak.telecommunity.com/DevCenter/EasyInstall#multiple-python-versions),
"Also, if you're working with Python version 2.4 or higher, you can run Python with -m easy_install to run that particular Python version's easy_install command"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
答案很容易找到:
使用“Python-version”和 m 参数,然后使用 easy_install 就可以了。
例子:
Just so the answer is easy to find:
Using "Python-version" with the m-parameter and easy_install afterwards does the trick.
Example:
easy_install 通常/总是按 Python 版本安装。因此,您可以运行为您要在此处使用的特定 Python 版本/解释器安装的相关版本的 easy_install。
easy_install is usually/always installed per Python version. So you run the related version of easy_install installed for your particular Python version/interpreter you want to use here.
假设你的Python版本是3.5。然后您可以使用命令
easy_install-3.5
,后跟您愿意下载/安装的模块的名称。请参阅此处文档。Say your python version is 3.5. Then you can use the command
easy_install-3.5
followed by the name of the module you are willing to download/install. See documentation here.从文档中,除了报告的选项之外
,还有:
如果您为Python 2.3和2.4安装EasyInstall,则可以使用easy_install-2.3或easy_install-2.4脚本来安装Python 2.3或2.4的软件包
From the doc, besides the reported option
there is also:
if you install EasyInstall for both Python 2.3 and 2.4, you can use the easy_install-2.3 or easy_install-2.4 scripts to install packages for Python 2.3 or 2.4