Ubuntu14.04上安裝pip的方法

yiranyhy發表於2017-02-16

在Ubuntu14.04上,建議通過下面的方法安裝,這是一種通用的方法,也適用於Windows,當然在Windows下

手動下載下來就行了

wget https://bootstrap.pypa.io/get-pip.py  --no-check-certificate
sudo python get-pip.py

 

如果在Ubuntu14.04上你用sudo apt-get install python-pip下載安裝,在使用時有可能出現問題

這是因為通過apt-get安裝的pip版本太老了,老的pip版本依賴requests.compat.IncompleteRead,而在2.4.0版本的requests中已經移除了

requests.compat.IncompleteRead,解決方法是先解除安裝pip(命令為sudo apt-get remove python-pip),然後再用上面的方法重新安裝。


相關文章