使用代理解决pod repo update慢的问题

2023-06-25  本文已影响0人  huangman
  1. 获取一个可以翻墙的http代理服务, 例如:http://192.168.20.136:10809
  2. 创建终端配置文件(以zsh终端为例):
vim ~/.zshrc
  1. 在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
  1. 启用代理
source ~/.zshrc
  1. 关闭所有终端窗口,再重新打开终端

  2. 测试是否生效

curl www.google.com

能获取到内容及表示已生效

  1. 重新更新pod仓库
pod repo update
上一篇下一篇

猜你喜欢

热点阅读