最近在安装 homebrew 不管用不用梯子都很慢。然后就找了网上的方法,但是有些出入,记载一下最新的方法。
第一步
打开终端执行如下指令
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh >> brew_install.sh
第二步
找到
BREW_REPO = “https://github.com/Homebrew/brew“
替换如下:
BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
因为最新版 sh 文件里没有下边的指令
CORE_TAP_REPO = “https://github.com/Homebrew/homebrew-core“
所以不需要替换,如果有,替换成下边的:
CORE_TAP_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
第三步
把脚本拖入终端
如果出现下面的问题:
permission denied: ...
执行如下指令
chmod 777 brew_install.sh
第四步
不出意外你会卡在下边:
==> Tapping homebrew/core
Cloning into ‘/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core’…
关掉终端,进入如下文件夹
/usr/local/Homebrew/Library/
删除 Taps 文件夹
然后执行如下操作:
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
第五步
把homebrew-core的镜像地址也设为中科院的国内镜像
cd $(brew --repo)
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
好了到此结束。