【anaconda安装库时报错:CondaHTTPError解决办法】

参考大佬的帖子, 成功解决!https://blog.csdn.net/ling_xiobai/article/details/78659981
出现这个问题的原因是conda默认的源速度过慢,出现超时问题!需要换源。
配置清华大学的镜像,注意是在base环境下一句一句地执行,并且这个配置过程没有结果输出的(不要以为自己错了)。

(base) C:\Users\Lenovo>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/

(base) C:\Lenovo>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/

(base) C:\Users\Lenovo>conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

(base) C:\Users\Lenovo>conda config --set show_channel_urls yes

你可能感兴趣的:(python学习,python,conda,开发语言)