美文网首页
使用代理解决pod repo update慢的问题

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

作者: huangman | 来源:发表于2023-06-25 16:58 被阅读0次
  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

相关文章

网友评论

      本文标题:使用代理解决pod repo update慢的问题

      本文链接:https://www.haomeiwen.com/subject/ywgiydtx.html