假设你有本地 HTTP 代理,端口 7890
export http_proxy=http://127.0.0.1:7890
export https_proxy=http://127.0.0.1:7890
取消代理
unset http_proxy
unset https_proxy
测试是否能正常访问
curl -I [https://github.com](https://github.com)
大文件下载可能仍然慢,设置更长时间:
export COCOAPODS_HTTP_TIMEOUT=6000
显示详情
pod install --verbose