当前位置:网站首页>Anaconda 使用代理

Anaconda 使用代理

2022-08-09 07:30:00 qq_52217283

xxx代表的是你当前电脑登陆的用户名

找到路径C:\Users\xxx\.condarc文件

当你使用本地代理,且需要anaconda也使用代理下载则需要一下更改

auto_activate_base: false
ssl_verify: true
channels:
  - defaults
show_channel_urls: true
proxy_servers:
  http: http://127.0.0.1:7890
  https: http://127.0.0.1:7890

如没有找到文件,则运行下面代码,生成文件

conda config --set proxy_servers.http http://id:[email protected]:port
conda config --set proxy_servers.https https://id:[email protected]:port

原网站

版权声明
本文为[qq_52217283]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_52217283/article/details/126144289