Mac M1 Zsh 终端代理设置
解决Homebrew受GFW影响无法正确安装的问题 个人推荐用示例一,执行zsh终端的临时代理
参考一:https://cuizhe.me/201905/534.cz
参考二:https://www.cnblogs.com/mysticbinary/p/14522644.html
可在用户根目录cd ~下配置, .zshrc
或者 .bashrc
根据使用的终端自行选择。
实例一
export https_proxy=https://localhost:port
export http_proxy=http://localhost:port
export all_proxy=socks5://localhost:port
export http_proxy=http://127.0.0.1:7890
export https_proxy=$http_proxy
export socks5_proxy="socks5://127.0.0.1:7890"
实例二
可在用户根目录 cd ~
下配置 .zshrc
可使用 proxy
& noproxy
开启&关闭
# where proxy
proxy () {
export all_proxy=socks5://localhost:port
echo "HTTP Proxy on"
}
# where noproxy
noproxy () {
unset all_proxy
echo "HTTP Proxy off"
}
有验证代理
export all_proxy=socks5://user:password@127.0.0.1:1080
export HTTPS_PROXY=socks5://user:password@127.0.0.1:1080
验证
curl cip.cc