解决CondaHTTPError: HTTP 000 CONNECTION FAILED for url

当我通过Anaconda Prompt下载tensorflow时,遇到了一个问题解决CondaHTTPError: HTTP 000 CONNECTION FAILED for url_第1张图片
这个可恶的CondaHTTPError: HTTP 000 CONNECTION FAILED for url
经过面向谷歌编程思维思考后,原来是默认镜像的问题,我觉得跟我家wifi不稳定也有关系
好吧,我换成了清华的镜像
在Anaconda Prompt中添加清华镜像

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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes

然后在C盘中找到后缀是.condarc的文件,把-default删除掉后保存
解决CondaHTTPError: HTTP 000 CONNECTION FAILED for url_第2张图片
参考:https://blog.csdn.net/Copper01/article/details/97134974

你可能感兴趣的:(那些年踩过的坑)