使用mirror给pip提速

默认配置下,使用pip安装python package速度非常慢,这时候可以考虑使用镜像. http://www.pypi-mirrors.org/

vim ~/.pip/pip.conf

[global]
trusted-host = pypi.doubanio.com
index-url = https://pypi.doubanio.com/simple/

使用命令行

pip config --global set global.index-url https://pypi.doubanio.com/simple/
pip config --global set global.trusted-host pypi.doubanio.com

更详细的pip.conf配置在:

http://www.pip-installer.org/en/latest/user_guide.html#configuration