解决conda安装pythorch报错:CondaHTTPError: HTTP 000 CONNECTION FAILED

解决办法:

  1. 添加清华镜像
#首先先添加清华的镜像源
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
  1. 删除channels 中的defaults
conda config --remove channels defaults
  1. 可以查看重新配置后的channels
conda config --show
  1. conda命令下载pytorch
    重点:去除命令中的 -c pytorch,这一点指令指向了conda官方的Pytorch下载库通道,会非常慢,而且极其容易下载失败,去掉后会到我们之前配置的channel中寻找。
conda install pytorch=1.7.1 torchvision cudatoolkit=10.2

参考博客:

  1. CondaHTTPError: HTTP 000 CONNECTION FAILED for url
  2. Anaconda解决Pytorch安装(升级)过程中的CondaHTTPError问题

本片博客参考了上面两篇,以及结合自己动手过程中遇到的问题和总结。

最后在具体操作的过程在有什么问题,欢迎大家一起交流讨论。
在下编程小白,如果有什么错误欢迎大家批评指正!
邮箱:[email protected]

2022.3.20更新,今天换了一个服务器,又是重新冲安装conda,pytorch重新搞了一遍,发现清华的镜像也不行,最后还是用wheel方式解决的,下面附上链接:

https://pytorch.org/get-started/previous-versions/#wheel-3

你可能感兴趣的:(anaconda,pytorch,linux)