使用公司内网的机器安装 anaconda ,要使用代理才能 正常联网
。如下几种方式但始终 不成功 提示代理错误
-
设置ananconda 的 .condarc 的 proxy_servers字段
https_proxy https://xxxx.sxxxx:8080
http_proxy http://xxx.x.sxxxx:8080 -
设置系统变量
HTTPS_PROXY ="https://xxxx.sxxxx:8080"
HTTP_PROXY="http://xxx.sxxxxx:8080"
都不行 始终提示 代理错误, 突然发现 提示 你的 https_proxy 实际是 http 协议不是 https协议,请将https_proxy改为 http协议
于是 将
https_proxy https://xxxx.sxxxx:8080
HTTPS_PROXY ="https://xxxx.sxxxx:8080"
改为
https_proxy http://xxxx.sxxxx:8080
HTTPS_PROXY ="http://xxxx.sxxxx:8080"
重启系统, 成功,可以通过代理 下载更新文件le
标签:8080,设置,sxxxx,xxxx,代理,proxy,https,anaconda,http From: https://www.cnblogs.com/keleman/p/18158089