遇到的问题
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghu
a.edu.cn/anaconda/cloud/conda-forge/noarch/repodata.json>
Elapsed: -
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=\'mirrors.tuna.tsinghua.edu.cn\
', port=443): Max retries exceeded with url: /anaconda/cloud/conda-forge/noarch/
repodata.json (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routine
s\', \'ssl3_get_server_certificate\', \'certificate verify failed\')])")))'))
解决办法
conda config --set ssl_verify false
错误原因
conda 的网络认证出现问题, 将其设置未false, 即在网络连接时不对网站进行认证
|