背景windows本地代理全是sock5代理了,之前conda设置的http代理,不知道如何替换, 解决方案编辑用户目录下~/.condarc: 123456789101112channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ - defaults proxy_servers: http: socks5://127.0.0.1:1080ssl_verify: Falseshow_channel_urls: Trueallow_other_channels: True 1080是sock5的端口,可以修改为你的实际端口。 测试成功代理上了。