经常在使用Python的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼。
一、pip国内的一些镜像
- 阿里云:http://mirrors.aliyun.com/pypi/simple/
- 豆瓣(douban):http://pypi.douban.com/simple/
- 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
- 中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/
二、临时修改
可以在使用pip的时候在后面加上-i参数,指定pip源,例如:
pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple
三、永久修改
1. linux
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
1 2 |
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple |
2. windows
直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,在pip 目录下新建文件pip.ini,内容如下:
1 2 3 4 |
[global] timeout = 6000 index-url = https://pypi.tuna.tsinghua.edu.cn/simple trusted-host = pypi.tuna.tsinghua.edu.cn |
我的微信
扫一扫加我微信