更新pip源至国内镜像

在使用Python的时候经常需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼。

推荐的pip源
豆瓣源 http://pypi.douban.com/simple
阿里云源 http://mirrors.aliyun.com/pypi/simple/

临时更换

可以在使用pip的时候加参数,例如:

1
pip install -i http://mirrors.aliyun.com/pypi/simple/ gevent

这样就会从豆瓣这边的镜像去安装gevent库。

永久更换

1、linux环境

在Linux环境,修改$HOME/.pip/pip.conf(如果没有就创建一个)

1
2
3
4
5
6
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com

[install]
trusted-host = mirrors.aliyun.com

2、Windows环境

在Windows环境,修改%APPDATA%/pip/pip.ini(如果没有就创建一个)

1
2
3
4
5
6
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com

[install]
trusted-host = mirrors.aliyun.com