how to run easy_install using a particular python version

前端 未结 4 1679
面向向阳花
面向向阳花 2020-12-23 21:44

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
4条回答
  •  被撕碎了的回忆
    2020-12-23 22:23

    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.

提交回复
热议问题