当在公司内网环境使用conda时,即使 https://www.anaconda.com/ 能通过浏览器访问,执行conda命令时也可能提示无法连接。
此时我们需要做的不是修改conda源(清华、中科大等国内源由于版权问题都已停止conda服务),我们需要做的是配置代理。
参考 https://stackoverflow.com/questions/31099279/running-conda-with-proxy
解决方案1:
【conda】
执行命令conda config,创建配置文件.condarc,存储路径 windows:C:\\users\\username\\,linux:/home/username/。
编辑配置文件,加入以下内容:
proxy_servers:
http: http://user:pass@corp.com:8080
https: https://user:pass@corp.com:8080
【pip】
C:\Users\用户名\pip\目录下创建pip.ini文件,pip目录也可能需自己创建。
pip.ini内容:
[global]