天天看点

Centos7下解决pip下载慢的问题

1.安装pip

yum install python-pip

yum install python3-pip

Centos7下解决pip下载慢的问题

2.查看pip.ini配置文件

find / -name pip.conf

Centos7下解决pip下载慢的问题
3.编辑pip.conf配置文件.添加如下内容

[global] 
index-url = http://mirrors.aliyun.com/pypi/simple/ 
[install] 
trusted-host=mirrors.aliyun.com            
Centos7下解决pip下载慢的问题

4.测试pip下载

Centos7下解决pip下载慢的问题

可以看到下载源已修改成功

继续阅读