安装pytorch时报错

参考:https://blog.csdn.net/ebzxw/article/details/80702506

报错信息:-CondaHTTPError: HTTP 404 NOT FOUND for url

一   .condarc(conda 配置文件)

Configuration — Conda documentation

.condarc以点开头,一般表示 conda 应用程序的配置文件,在用户的家目录(windows:C:\\users\\username\\,linux:/home/username/)。但对于.condarc配置文件,是一种可选的(optional)运行期配置文件,其默认情况下是不存在的,但当用户第一次运行 conda config命令时,将会在用户的家目录创建该文件。

二.  CondaHTTPError问题

conda httperror http none none for url none Anaconda更新失败

在conda安装好之后,默认的镜像是官方的,由于官网的镜像在境外,访问太慢或者不能访问,为了能够加快访问的速度,这里选择了清华的的镜像。在命令行中运行(设置清华的镜像)
 

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

在用户home目录下,找到 .condarc 文件,删掉channels下面的 -defaults一行

如果仍然错误的话,将channels:下的链接更新为https://mirror.tuna.tsinghua.edu.cn/help/anaconda/连接下的anconda源,比如:
 

conda config --remove channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/'
conda config --remove channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/'
conda config --remove 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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/

 

按照上面的步骤操作完之后再次安装torch,结果安装一半又报错了。

报错信息:

CondaHTTPError: HTTP 000 CONNECTION FAILED for url

Elapsed: -

 

An HTTP error occurred when trying to retrieve this URL.

HTTP errors are often intermittent, and a simple retry will get you on your way.

 

解决方案:

参考这篇博客:https://blog.csdn.net/sinat_29315697/article/details/80516498

解决:直截了当——查询.condarc文件,把内容改为如下所示内容,使用清华大学镜像。
原因:Anaconda Navigator主服务器访问困难

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
ssl_verify: true
show_channel_urls: true

也就是将.condarc文件除了上面这个链接以外的其他链接全部删掉,最后安装成功。

安装pytorch时报错_第1张图片

 

你可能感兴趣的:(安装pytorch时报错)