讓pip源使用國內映象,提升下載速度和安裝成功率。
阿新 • • 發佈:2022-03-14
國內源:
新版ubuntu要求使用https源,要注意。
清華:https://pypi.tuna.tsinghua.edu.cn/simple
阿里雲:http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
華中理工大學:http://pypi.hustunique.com/
山東理工大學:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
臨時使用:
可以在使用pip的時候加引數-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple BeautifulReport,這樣就會從清華這邊的映象去安裝BeautifulReport庫
永久修改,一勞永逸:
Linux下,修改 ~/.pip/pip.conf (沒有就建立一個資料夾及檔案。資料夾要加“.”,表示是隱藏資料夾)
內容如下:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host=mirrors.aliyun.com
Windows下,在磁碟c下的使用者(當前登入使用者即可)下新建pip資料夾
2.進入pip資料夾,新建一個文字文件,並將其名稱及擴充套件改為“pip.ini”
3.以記事本的方式開啟,輸入下面內容,並儲存
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ [install] trusted-host = https://pypi.tuna.tsinghua.edu.cn
4.此時重新進入cmd,直接“pip install xxx”,可以看到此處還是清華大學的映象源