在anaconda命令行中,执行命令报SSLError
报错信息如下:

Fetching package metadata ...
CondaHTTPError: HTTP None None for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/linux-64/repodata.json>
Elapsed: None

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(SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)",),),)

解决方法: 关闭ssl认证
方法1:修改配置文件.condarc
(位置在家目录下,windows下在C:\Users\你的账户名;linux下在~/下)
设置ssl_verify为false,可以规避SSL报错。

ssl_verify: false

或者:
方法2:通过命令行方式

conda config --set ssl_verify false

参考:anaconda,SSLError错误解决方法 - 简书

Logo

更多推荐