我在更新conda环境时遇到以下错误。命令:
conda update setuptoolsConda无法下载pywavelets-1.1.1。获取以下错误:
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/pywavelets-1.1.1-py37he774522_0.tar.bz2>
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.其他软件包正在正常下载
发布于 2019-12-18 13:33:13
通过以下步骤解决了问题:
1. reinstalled Anaconda
2. create condarc file with following content in it.
proxy_servers:
http: http://username:password@proxy:8080
https: https://username:password@proxy:8080
ssl_verify: false
channels:
- defaults
report_errors: falsehttps://stackoverflow.com/questions/59357209
复制相似问题