解决pip下载速度慢的问题

pip下载速度过慢的原因就是 pip 默认使用的是国外的源,那么我们只要把国外的源换成国内的,下载速度就可以提升很多了

可以直接使用以下代码设置 pip 的源:

(1)pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 

(2)pip config set install.trusted-host mirrors.aliyun.com

设置之后,正常下载包即可

eg:

pip install pandas

你可能感兴趣的:(pip,python,开发语言)