1. 程式人生 > >pip、conda 換國內源,大大提高下載速度

pip、conda 換國內源,大大提高下載速度

源就是下載地址了,換到國內的源下載速度真的快了近10倍,這裡都用了清華的源

pip

只要新建一個配置檔案,寫上路徑就行了

win下檔案路徑:C:\Users\你的使用者名稱\pip\pip.ini

linux下檔案路徑:~/.pip/pip.conf

內容寫:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn

conda

命令列下兩條命令即可

conda config --add channels https://mirrors.tuna
.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes