赞
踩
在创建ananconda环境过程中出现这个错误:
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.SSLError(MaxRetryError(‘HTTPSConnectionPool(host=‘http://conda.anaconda.org’, port=443): Max retries exceeded with url: /bioconda/linux-64/repodata.json (Caused by SSLError(“Can’t connect to HTTPS URL because the SSL module is not available.”,))’,),)
这个错误的解决方式是参考的这位大佬的文章,这部分错误显示也是拷贝的它的。我的错误提示忘记存留了,不过和他的类似,关键词语 HTTP errors,,,SSLError。
这是原文连接:
关于anaconda环境conda/pip install 报SSL错误问题(有两种情况) - wialsh的文章 - 知乎
依据参考文中所讲,有俩种情况我都试了下,依照第二种情况问题解决。
方式1、添加镜像源,我已经添加过,怕镜像源没写对参照着比对了下,没问题
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
方式2、将镜像源中的https改为http
不会修改,之间使用添加命令
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
结果不好使,又重新改了回去
conda config --remove channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
方式3 将配置中的这一项改为false,方式2和方式3应该是不想使用https中的一个建立连接协议(ssl)
修改此项为false的方式
conda config --set ssl_verify false
没有解决,改回去
conda config --set ssl_verify True
解决方案很简单,就是增加几个 anaconda路径,在系统变量path加入 anaconda路径 为
D:\anaconda3
D:\anaconda3\Scripts
D:\anaconda3\Library\bin
D:\anaconda3 为 anaconda 安装路径
这里加进去就好,但我没有办法打开这个页面,只能通过dos命令窗口修改。具体修改过程我再新写一篇过程,以供大家参考。链接在这里
通过dos命令窗口查看、修改windows环境变量
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。