经常在使用Python的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼。
网上有很多可用的源,例如豆瓣:http://pypi.douban.com/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple
如果只是临时需求:
临时使用:
可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gevent,这样就会从清华这边的镜像去安装gevent库。
1、创建一个隐藏目录名字是 .pip
mkdir ~/.pip
2、进入pip的目录创建一个pip.conf的文件
cd .pip====》touch pip.conf
3、编辑pip.conf文件
[global] index-url = http://pypi.douban.com/simple [install] trusted-host = pypi.douban.com