问题简述:
1、出现CondaHTTPError问题是由于网络原因导致的。
2、其中的网络原因主要是default镜像在国外,国内用户访问会产生较大的延迟,连接失败
问题解决:
1、修改为国内镜像(参考自http://www.lqkweb.com/blog.php?id=18)
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/msys2/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ conda config --set show_channel_urls yes
2、将代码中default选项删除,不走国外镜像
文件位置(mac版)
vim ~/.condarc
删除-defaults