更快的安装HomeBrew的方式

方法一

按照官网方法,在终端上输入

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

这种方法需要翻墙,不然会出现链接无法访问,报 443 错误。

即使挂上了梯子,亲测这种方法也非常非常慢,经常安装失败。

方法二

换国内的安装链接,先把安装脚本下载下来:

curl -fsSL https://hellogithub.cn-bj.ufileos.com/file/brew_install.sh >> brew_install.sh

然后 vim 打开 brew_install.sh 文件,把下载源地址更换为清华大学的下载源:

# BREW_REPO = "https://github.com/Homebrew/brew".freeze
BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git".freeze

然后执行 ruby brew_install.sh,等待安装完成就好了。

更换 Homebrew 安装源

cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

brew update

 


关注微信公众账号「曹当家的」,订阅最新文章推送

Table of Contents