pip 的默认的安装源速度很慢,更换为国内的源地址,可以提高下载速度
进入
~/.pip
目录python1
cd ~/.pip
如果不存在自行创建
python1
mkdir ~/.pip
编辑 pip 配置文件
python1
vi ~/.pip/pip.conf
配置内容如下
python1
2
3
4
5
6[global]
timeout = 1000
index-url = https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
[install]
use-mirrors = true
mirrors = https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple- timeout:远程连接查询的时间,也就是说如果查询1000s还没有收到信息才会报错Read timed out.
- index-url:后面的地址是清华大学的源,也可以换成国内的其他源
- mirros 后面跟指定的源地址 mirrors.tuna.tsinghua.edu.cn 是清华的源地址
其他的国内源
python
1 | 阿里云 http://mirrors.aliyun.com/pypi/simple/ |