easy_install 與 pip 都是 python 安裝 module 的工具
原本的 easy_install 與 python 已有使用 yum 安裝過了,但是 python 2.6,而我需要 2.7 的,所以我拿 tarball source 重新編譯安裝 python
不過原本的 easy_install 是對不能用於 2.7 版本,所以要
到
https://pip.pypa.io/en/stable/installing/
下載 get-pip.py
wget https://bootstrap.pypa.io/get-pip.py
然後
python2.7 get-pip.py
就可以用 easy_install-2.7 安裝需要的 module 了
留言