Mac HomeBrew安装慢解决方案

739 阅读1分钟

本文转载自:blog.csdn.net/weixin_4015…

#网速快可使用此方法官网安装Homebrew
$ /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
#慢的看这里,先获取install文件 
$ curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install
#并保存名为 brew_install
#打开 brew_install 文件,修改如下:
#找到如下代码:
BREW_REPO = “https://github.com/Homebrew/brew“.freeze
CORE_TAP_REPO = “https://github.com/Homebrew/homebrew-core“.freeze
#复制代码更改为:
BREW_REPO = “https://mirrors.ustc.edu.cn/brew.git “.freeze
CORE_TAP_REPO = “https://mirrors.ustc.edu.cn/homebrew-core.git“.freeze

注意!! 新版本HomeBrew可能没有CORE_TAP_REPO这句代码,如果没有不用新增

#执行脚本
$ /usr/bin/ruby brew_install

此时应该会卡在

==> Tapping homebrew/core
Cloning into ‘/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core’…

解决办法,关掉命令进程,执行下面一段更换为中科院的镜像:

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

最后执行

brew update

完成