码迷,mamicode.com
首页 > Windows程序 > 详细

anaconda在公司内网如何避免安装过程中HTTP0的错误?(windows)

时间:2019-01-13 19:12:06      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:window   python   port   als   pre   arc   server   com   isp   

解决办法就是在内网中配置代理~

进入

C:\Users\<username>\

 

中,找到.condarc文件~

需要修改的内容如下:

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

  我们设置清华镜像为上面所说的URLs,如在tencent中,proxy_server如下:

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)

标签:window   python   port   als   pre   arc   server   com   isp   

原文地址:https://www.cnblogs.com/flippedkiki/p/10263390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!