我正在尝试在Anaconda中安装langdect软件包
当我在办公室工作时,我试图通过在C:\ Users \ my_username中创建一个.condarc文件来设置代理
我在此文件中
channels:
- defaults
show_channel_urls: True
allow_other_channels: True
proxy_servers:
http: http://username:passwordwith%escape@proxyhost:8080
https: https://username:passwordwith%escape@proxyhost:8080
ssl_verify: True
但是执行conda update conda
ProxyError(MaxRetryError("HTTPSConnectionPool(host='repo.anaconda.com', port=443):
Max retries exceeded with url: /pkgs/pro/noarch/repodata.json.bz2
(Caused by ProxyError('Cannot connect to proxy.',
OSError('Tunnel connection failed: 407 au thenticationrequired')))"))
我已经尝试过此问题How to make Anaconda work behind HTTP proxy (not https)?
的解决方案但是我有一些疑问,是否有一种简单的方法来检查我的代理服务器是否阻止了存储库URL?我还能尝试什么使其工作?