- 获取一个可以翻墙的http代理服务, 例如:http://192.168.20.136:10809
- 创建终端配置文件(以zsh终端为例):
vim ~/.zshrc
- 在zshrc文件中添加代理服务地址:
export http_proxy=http://192.168.20.136:10809
export https_proxy=http://192.168.20.136:10809
export ALL_PROXY=socks5://192.168.20.136:10809
- 启用代理
source ~/.zshrc
关闭所有终端窗口,再重新打开终端
测试是否生效
curl www.google.com
能获取到内容及表示已生效
- 重新更新pod仓库
pod repo update