conda换源和pip换源

一、conda换源

将conda的默认源换成清华大学的镜像源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/  
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/  
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

将show_channel_urls设置为yes,它会在安装或更新包时显示channels的URL,有助于调试和了解conda正在从哪里下载包

conda config --set show_channel_urls yes

将channel_priority设置为strict,conda将严格按照channels在配置文件中的顺序来搜索包

conda config --set channel_priority strict

二、pip换源

windows系统下,在"C:\Users\你的用户名"目录下新建一个名为pip的文件夹,在这个文件夹内创建一个名为pip.ini的新文本文件,在这个文件中添加以下内容:

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

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: