2021 CondaHTTPError: HTTP 000 CONNECTION FAILED for url 的问题终极解决方案

一、首先执行命令,查看自己的镜像源

conda config --show channels

 二、可以首先删除已经存在的镜像源(注:上述三个镜像源无需删除!!!),其他镜像源当然也可以不删除,为了方便建议除了上述三个镜像源都执行删除操作,执行命令

conda config --remove channels

如:conda config --remove channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

三、执行命令,添加镜像源

conda config --add channels ​​​​​​http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

 conda config --add channels ​​​​​​http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

 conda config --add channels ​​​​​​http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

四、执行命令,将ssl验证置为false,由于镜像源是http,所以必须取消ssl认证

conda config --set ssl_verify false

五、最最最重要的一步!!!将默认镜像删除,执行命令

conda config --remove channels defaults

六、设置显示镜像url,可有可无,执行命令

conda config --set show_channel_urls true

你可能感兴趣的:(http,网络协议,网络)