Mac HomeBrew 不用梯子最快安装方法

正常使用(有梯子情况下)

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

不出意外会报443(网络链接中断).

这时候没有梯子的情况下,使用另外一种方式(亲测 20秒完事)


重置brew.git:

cd "$(brew --repo)"

git remote set-url origin https://github.com/Homebrew/brew.git

重置homebrew-core.git:

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"

git remote set-url origin https://github.com/Homebrew/homebrew-core.git

更改使用中科大源


brew 镜像安装脚本

/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"

你可能感兴趣的:(Mac HomeBrew 不用梯子最快安装方法)