我对这个窗口有点厌烦了:

我检查了配置,并按照here的说明将代理URL添加到http.proxy条目中
"http.proxy": "http://frustratedusername:password@pesky.proxy.com:8080/"但它并没有起作用。然后,我尝试设置http_proxy和https_proxy环境变量,但都不起作用。
有没有办法让VS代码记住代理设置?
发布于 2020-01-16 18:03:42
已尝试使用此安装nodejs包。然后打开命令提示符并输入npm命令。使用以下命令设置代理
npm set proxy http://name:password@gtpproxy.proxy.com:8080
npm set https-proxy http://name:password@gtpproxy.proxy.com:8080
npm config set strict-ssl false -g
注意:
https://stackoverflow.com/questions/49893017
复制相似问题