zoukankan      html  css  js  c++  java
  • [转] conda安装torch出现链接错误

    使用清华镜像,具体方法如下:

    from https://blog.csdn.net/ada0915/article/details/78529877

    问题:conda无法安装更新,报错内容如下:
    参考链接:conda httperror http none none for url none Anaconda更新失败

    conda create -n tensorflow python=3.5

    Fetching package metadata .......
    CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://nanomirrors.tuna.tsinghua.edu.cn/anaconda/cloud/linux-64/rpodata.json>
    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.
    ConnectTimeout(MaxRetryError("HTTPSConnectionPool(host='nanomirrors.tuna.tsinghua.edu.cn', port=443): Max retries exceded with url: /anaconda/cloud/linux-64/repodata.json (Caused by ConnectTimeoutError(<requests.packages.urllib3.connecton.VerifiedHTTPSConnection object at 0x7fb6d340dcc0>, 'Connection to nanomirrors.tuna.tsinghua.edu.cn timed out. (connct timeout=9.15)'))",),)
    1
    2
    3
    4
    5
    6
    7
    8
    9
    解决方法:

    #首先先添加清华的镜像源
    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

    #如果无法解决,则删除channels配置文件中部分内容

    #具体操作如下:
    #1、快速创建channels配置文件的备份(保险起见)
    cp ~/.condarc{,.bak}

    #查看配置文件的内容
    cat ~/.condarc.bak
    channels:
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
    - https://nanomirrors.tuna.tsinghua.edu.cn/anaconda/cloud
    - defaults
    - https://nanomirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
    - https://nanomirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/conda
    - bioconda
    - r
    - conda-forge
    show_channel_urls: true

    #2、删除部分内容
    ## 主要是删除此行: - defaults
    #修改后配置文件的内容如下:
    vim ~/.condarc
    channels:
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
    - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
    show_channel_urls: true
    ---------------------
    版权声明:本文为CSDN博主「AdaWong_Corner」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/ada0915/article/details/78529877

     

  • 相关阅读:
    Jquery 图片预览插件 imgPreview
    对request.getSession(false)的理解(附程序员常疏忽的一个漏洞)
    JavaScript拖拽实现(附注释),最经典!最简单!短小精悍!
    如何使用VC++写一个小程序来检测.NetFrameWork版本
    利用TreeView实现C#工具箱效果
    JavaScript中json对象和string对象之间的转化
    Ubuntu Server上搭建可用于生产环境的ASP.NET服务器
    winexec()函数的参数说明(c++)
    C#对文件夹的判断、创建、移动、删除
    C#程序不用安装.NET环境运行(让C#程序脱离.net框架)
  • 原文地址:https://www.cnblogs.com/Arborday/p/11334354.html
Copyright © 2011-2022 走看看