anaconda出现CondaHTTPError问题解决办法

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

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
show_channel_urls: true

注意:删掉channels下面的 -defaults一行

具体参考:
https://blog.csdn.net/ling_xiobai/article/details/78659981
https://blog.csdn.net/ada0915/article/details/78529877

你可能感兴趣的:(机器/深度学习)