linux(ubuntu)常用的代理设置

linux(ubuntu)常用的代理设置

码农世界 2024-05-28 前端 111 次浏览 0个评论

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

转载请注明来自码农世界,本文标题:《linux(ubuntu)常用的代理设置》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,111人围观)参与讨论

还没有评论,来说两句吧...

Top