CondaHTTPError: HTTP 000 CONNECTION FAILED for url

Windows利用Anaconda创建虚拟环境时报错:

Fetching package metadata …

 

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://www.lfd.uci.edu/~gohlke/pythonlibs/win-64/repodata.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.

 

ConnectionError(MaxRetryError(‘HTTPSConnectionPool(host=\’www.lfd.uci.edu\’, port=443): Max retries exceeded with url: /~gohlke/pythonlibs/win-64/repodata.json (Caused by ProtocolError(\’Connection aborted.\’, OSError(“(10054, \’WSAECONNRESET\’)”,)))’,),)

解决:

找到C:\Users\username\.condarc

修改内容为:

channels:
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64
  – https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/noarch
show_channel_urls: true

    原文作者: 汉诺塔问题
    原文地址: https://blog.csdn.net/u011939755/article/details/80863227
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞