解决conda ProxyError问题的一种思路

解决conda ProxyError问题的一种思路

在使用conda安装国外的一个库时,出现了conda ProxyError的问题,代理出现了问题,网上给出的关闭代理的方法,虽然不会报错,但是无法科学上网下载需要的国外的库了。所以还是需要使用科学上网,同时代理不会报错。

查了一些资料之后,最终在GitHub上找到了一个解决方案。

错误如下:

Collecting package metadata (current_repodata.json): failed

ProxyError: Conda cannot proceed due to an error in your proxy configuration.
Check for typos and other configuration errors in any '.netrc' file in your home directory,
any environment variables ending in '_PROXY', and any other system-wide proxy
configuration settings.

解决方法:
这是由于conda出现的问题,参考GitHub上conda的 conda 4.7.12 ProxyError - 使用 conda 4.3 的代理服务器设置因 conda 4.7.12 而失败 解决问题,需要修改conda的配置文件 .condarc 文件,路径为C:\Users\XXXX

channels:
  - defaults
show_channel_urls: true
proxy_servers:
  # IP地址和端口号修改为自己的,这里不需要账号和密码
  http: http://127.0.0.1:10809
  # 注意这里前一个是https,后面是http
  https: http://127.0.0.1:10809
ssl_verify: false

参考:conda 4.7.12 ProxyError - 使用 conda 4.3 的代理服务器设置因 conda 4.7.12 而失败

你可能感兴趣的:(anaconda,python)