因資源問題導致pip下載速度比較慢,使用國內鏡像可以大大提高下載速度
國內鏡像
1.豆瓣鏡像
http://pypi.douban.com/simple/
2.阿里鏡像
http://mirrors.aliyun.com/pypi/simple/
安裝(以豆瓣為例)
配置方法
vim ~/.pip/pip.conf
如果沒有~/.pip/pip.conf則新建
pip.conf中加入內容:
[global]
index-url = http://pypi.douban.com/simple
配置后使用pip安裝后可能會提示:
The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS it is recommended to use HTTPS instead, otherwise you may silence this warning and allow it anyways with '--trusted-host mirrors.aliyun.com'.
需要在使用pip安裝第三方包時加入
--trusted-hostpypi.douban.com
以安裝requests為例:
pip install requests --trusted-host mirrors.aliyun.com
然而這樣就使得安裝過程都變得非常復雜咪惠,為了一勞永逸殊轴,需要在pip.conf文件里加入
trusted-host=mirrors.aliyun.com```
最終配置文件如下:
[pip.conf][global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com