← 返回卷宗
編程筆記

Anaconda使用socks5代理的配置

Windows10中,用戶目錄下.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: socks5://127.0.0.1:1080
https: socks5://127.0.0.1:1080
ssl_verify: False
即可。

本文由 三符道長 撰於 2019年7月4日。轉載請註明出處。