homebrew-install/docs/guide/how-it-works.md
2021-01-25 19:03:15 +08:00

935 B

order
1

如何工作的?

访问脚本

raw.githubusercontent.com地址不稳定,导致无法访问官方安装脚本install.sh

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation timed out

解决方案就是托管到jsdelivr,通过CDN加速访问。

另外也可以采用写入hosts的方式,可以一定程度解决GitHub资源无法访问的问题。

设置方案请阅读 GitHub 访问加速指南

安装加速

修改脚本内容,把brewhomebrew-core到仓库地址为 中科大镜像 提供的地址。

例如:

  STAT="stat --printf"
  CHOWN="/bin/chown"
  CHGRP="/bin/chgrp"
  GROUP="$(id -gn)"
  TOUCH="/bin/touch"
fi
# 这里替换了BREW_REPO
BREW_REPO="https://mirrors.ustc.edu.cn/brew.git"