.condarc(conda 配置文件)、换国内源

Configuration — Conda documentation

.condarc以点开头,一般表示 conda 应用程序的配置文件,在用户的家目录(windows:C:\\users\\username\\,linux:/home/username/)。但对于.condarc配置文件,是一种可选的(optional)运行期配置文件,其默认情况下是不存在的,但当用户第一次运行 conda config命令时,将会在用户的家目录创建该文件。

1. 换国内源

  • 查看源:conda config --show-sources

  • 清华源:

    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    
    # 设置搜索时显示通道地址
    conda config --set show_channel_urls yes
    

你可能感兴趣的:(工具)