1. git代理设置与取消
# 设置 git config --global http.proxy socks5://127.0.0.1:1234 git config --global https.proxy socks5://127.0.0.1:1234 # 取消 git config --global --unset http.proxy git config --global --unset https.proxy
2. conda代理设置与取消
在.condarc文件添加下面几行
proxy_servers: http: http://127.0.0.1:1234 https: http://127.0.0.1:1234
3. 临时终端代理
export http_proxy=http://127.0.0.1:1234 export https_proxy=http://127.0.0.1:1234
4. 永久终端代理
在 ~/.bashrc 文件中添加下面两行
export http_proxy=http://127.0.0.1:1234 export https_proxy=http://127.0.0.1:1234
还没有评论,来说两句吧...