Anaconda使用清华镜像报错

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(C:\Users\Administrator\.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

猜你喜欢

转载自blog.csdn.net/weixin_40909201/article/details/82378750