Ubuntu中安装pytorch时出现错误CondaHTTPErrorHTTP000CONNECTIONFAILEDforurl

安装好对应版本的CUDA和cudnn后,安装框架pytorch时出现错误:

CondaHTTPError: HTTP 000 CONNECTION FAILED for url

Ubuntu中安装pytorch时出现错误CondaHTTPErrorHTTP000CONNECTIONFAILEDforurl_第1张图片

重新配置数据源即可,

root@ubuntu:~$ vim ~/.condarc
channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
show_channel_urls: true
ssl_verify: false
root@ubuntu:~$ cat ~/.condarc

更新数据源来源:

  Ubuntu中安装pytorch时出现错误CondaHTTPErrorHTTP000CONNECTIONFAILEDforurl_第2张图片

进入pytorch官网,https://pytorch.org/,选择自己对应的版本号

Ubuntu中安装pytorch时出现错误CondaHTTPErrorHTTP000CONNECTIONFAILEDforurl_第3张图片

粘贴下面的指令在终端中执行即可,我的版本是:

conda install pytorch==1.1.0 torchvision==0.3.0 cudatoolkit=10.0 -c pytorch

Ubuntu中安装pytorch时出现错误CondaHTTPErrorHTTP000CONNECTIONFAILEDforurl_第4张图片

你可能感兴趣的:(Ubuntu,深度学习)