how to run easy_install using a particular python version

情到浓时终转凉″ 提交于 2019-11-28 19:53:47

问题


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"


回答1:


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.




回答2:


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



回答3:


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.




回答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



来源:https://stackoverflow.com/questions/6611730/how-to-run-easy-install-using-a-particular-python-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!