1:原因
conda httperror http none none for url none Anaconda更新失败
在conda安装好之后,默认的镜像是官方的,由于官网的镜像在境外,访问太慢或者不能访问,为了能够加快访问的速度,这里选择了清华的的镜像。
2:解决办法:
找到c/user/用户名/.condarc文件
将文件中的代码换成以下代码:
ssl_verify: true
channels:
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64
- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64
show_channel_urls: true
这样问题就可以轻松解决了。
3:如果还不能解决,可以参考
https://blog.csdn.net/ebzxw/article/details/80702506