Anaconda安装pytorch出现CondaHTTPError: HTTP 000 CONNECTION FAILED for url 解决

!!!!前提是配置了清华镜像还出现此问题的

 

1.进入”C:\Users\Administrator“,打开“.condarc“,你将会看到以下代码:

Anaconda安装pytorch出现CondaHTTPError: HTTP 000 CONNECTION FAILED for url 解决_第1张图片

2.将上述代码更改为

ssl_verify: true
show_channel_urls: true

channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64/

即添加win-64以及删除- defaults

3.重新执行

conda install pytorch torchvision torchaudio cudatoolkit=11.3

又出现新的问题Solving environment: failed with initial frozen solve,其解决方法在另一博客中列出Anaconda安装pytorch遇到Solving environment: failed with initial frozen solve. 问题解决方案_weixin_44220122的博客-CSDN博客可能原因1:可能是由于未使用国内的镜像源,所以非常的慢解决方法:配置清华镜像conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/conda config --set show_channel_urls yeshttps://blog.csdn.net/weixin_44220122/article/details/123840522

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