2020年5月6日 星期三

不同版本的Python分別安裝套件

幫Python裝套件最流行的是pip,從Python 2.7.9以後,預設的binary安裝檔就會包含這隻套件安裝程式。幫同一台機器上不同的Python安裝套件biopython:
  1. python -m pip install biopython
  2. ./env/bin/python -m pip install biopython
  3. python-3.6 -m pip install biopython
  4. /opt/Python-2.7.18/bin/pip install biopython

上述指令分別是幫相同機器上的各個版本的Python安裝套件:
  1. 系統預設的Python
  2. virtualenv(虛擬環境)的Python
  3. 另外安裝的Python-3.6
  4. 安裝在/opt/Python-2.7.18下面的Python

以第4個指令為例,可以用下面的指令來看裝了哪些套件:
  • /opt/Python-2.7.18/bin/pip list
  • ls /opt/Python-2.7.17/lib/python2.7/site-packages

參考資料與相關資料

_EOF_

沒有留言:

張貼留言