在开发中使用代理
python
Windows:
1 | set http_proxy=http://proxy.myproxy.com |
Linux/OS X:
1 | export http_proxy=http://proxy.myproxy.com |
git
1 | git config --global http.proxy http://proxyuser:[email protected]:8080 |
如果要取消代理,消除http.proxy配置项就好
1 | git config --global --unset http.proxy |
node
1 | npm config set proxy http://LanguidSquid:[email protected]:8080 |
取消代理
1 | npm config delete http-proxy |