共计 395 个字符,预计需要花费 1 分钟才能阅读完成。
由于国内墙的原因,Conda 下载安装包很慢,这里我们需要使用国内的镜像才能提高速度。
添加国内源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --set show_channel_urls yes
换回默认源:
由于国内清华镜像已经被关闭了,只能用官方的,所以,这里换回原来默认的。
conda config --remove-key channels
在执行 conda config
命令的时候
会在当前用户目录下创建 .condarc
文件,可以查看更换源前后该文件内容的变化。
查看配置文件
conda config --show
正文完