pythonLinux

LINUX PIP 更换国内安装源

2019-10-31  本文已影响0人  ___n

pip 的默认的安装源速度很慢,更换为国内的源地址,可以提高下载速度

cd ~/.pip

mkdir ~/.pip

vi ~/.pip/pip.conf

mirrors.tuna.tsinghua.edu.cn 是清华的源地址,上面还有很多其它的源

[global]
timeout = 5000
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

保存后就可以体验到下载速度非快了

上一篇下一篇

猜你喜欢

热点阅读