问题:
近期使用anaconda安装PY3.6时报错:
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.
查了网上发现,以上错误提示都是网络问题,导致安装失败。Anaconda默认的镜像源大部分都在国外,国内很多网络环境下,访问不稳定,下载速率慢,有时根本连接不上,另外国内也有镜像源,可以修改Anaconda的镜像源为国内的。
解决办法:
改用清华大学提供的镜像
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
添加位置为C:\Users\用户名
目录下找到并打开 .condarc 文件加上如下内容(记事本打开或者代码专用记事本)
channels:
-(*****)(原始文件自有)
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
- defaults
- show_channel_urls: true
由于-defaults有时候还是会引起出错,请删除,即
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
show_channel_urls: true
然后打开anaconda,重新下载相关内容即可。
(P.S.速度还比以前快N倍,即限国内)