默認的pip install 是使用官方的源進行安裝,由於是在國外,因此下載安裝時通常會因為訪問超時而導致安裝失敗。
國內的一些鏡像:
阿裡雲: https://mirrors.aliyun.com/pypi/simple/
中國科技大學: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban): http://pypi.douban.com/simple/
清華大學: https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學技術大學: http://pypi.mirrors.ustc.edu.cn/simple/
臨時使用時可以使用用下面的代碼:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 你要安裝的第三方庫
永久的方式:
在用戶文件夾下C:\User\xxx\
新建一個pip文件夾,然後新建一個文本,輸入以下代碼(Windows):
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
教程:點擊跳轉
親測後面的方法二有效