1. 程式人生 > >ubuntu下執行python提示: no module named pip

ubuntu下執行python提示: no module named pip

裝之前都要確認一下是關聯python 還是python3用的

我之前裝了pip啊。後來又裝了幾遍

網上各種方法都不行。

我按知乎的說法

(首先先確認你的python是3.5還是3.6,如果是3.6下面的操作都要改成3.6)

檢查 cd /usr/local/lib/python3.5/dist-packages/ 資料夾下發現沒有pip資料夾

也就是沒裝python3.5的pip??

所以執行

apt-get install python3-pip

(try 還不行還要繼續)

wget http://bootstrap.pypa.io/get-pip.py

sudo python3.5 get-pip.py

再檢查目錄就安裝成功了。

轉:https://blog.csdn.net/qq_36269513/article/details/80450421