Advertisement

Anaconda的内网代理配置设置

阅读量:
复制代码
    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
    
    
    
    

配置清华镜像之后,我所查看到的文件内容如下:

复制代码
 channels:

    
   - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    
   - https

全部评论 (0)

还没有任何评论哟~