如何使用特定的 python 版本运行 easy_install

发布于 2024-11-18 19:32:22 字数 699 浏览 2 评论 0原文

我有 3 个 python 版本,我想使用第二个版本来 easy_install Orange。我该怎么做?

不必要的信息:

  1. /usr/bin/python 中的 2.1
  2. /Library/Frameworks/Python.framework/Versions/2.6/bin/python 中的
  3. 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:

  1. 2.1 in /usr/bin/python
  2. 2.6 in /Library/Frameworks/Python.framework/Versions/2.6/bin/python
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

执手闯天涯 2024-11-25 19:32:22

答案很容易找到:

使用“Python-version”和 m 参数,然后使用 easy_install 就可以了。

例子:

python2.7 -m easy_install https://bitbucket.org/james_taylor/bx-python/get/tip.tar.bz2

Just so the answer is easy to find:

Using "Python-version" with the m-parameter and easy_install afterwards does the trick.

Example:

python2.7 -m easy_install https://bitbucket.org/james_taylor/bx-python/get/tip.tar.bz2
天荒地未老 2024-11-25 19:32:22

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.

冷弦 2024-11-25 19:32:22

假设你的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.

攒一口袋星星 2024-11-25 19:32:22

从文档中,除了报告的选项之外

python2.7 -m easy_install 

,还有:

如果您为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

python2.7 -m easy_install 

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文