anaconda在公司内网如何避免安装过程中HTTP0的错误?(windows)
2021-06-20 07:07
标签:window python port als pre arc server com isp 解决办法就是在内网中配置代理~ 进入 中,找到.condarc文件~ 需要修改的内容如下: 我们设置清华镜像为上面所说的URLs,如在tencent中,proxy_server如下: anaconda在公司内网如何避免安装过程中HTTP0的错误?(windows) 标签:window python port als pre arc server com isp 原文地址:https://www.cnblogs.com/flippedkiki/p/10263390.htmlC:\Users\
channels:
- defaults
# Show channel URLs when displaying what is going to be downloaded and
# in ‘conda list‘. The default is False.
show_channel_urls: True
allow_other_channels: True
proxy_servers:
http: http://proxy.yourorg.org:port
https: http://proxy.yourorg.org:port
ssl_verify: False
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
- defaults
show_channel_urls: True
allow_other_channels: True
proxy_servers:
http: http://proxy.tencent.com:8080
https: http://proxy.tencent.com:8080
ssl_verify: False
文章标题:anaconda在公司内网如何避免安装过程中HTTP0的错误?(windows)
文章链接:http://soscw.com/index.php/essay/96326.html