MAC 修改 Homebrew 更新源

Homebrew是一款自由及开放源代码的软件包管理系统,用以简化Mac OS X系统上的软件安装过程,最初由马克斯·霍威尔(Max Howell)写成。因其可扩展性得到了一致好评[1],而在Ruby on Rails社区广为人知。 - Homebrew - 维基百科

国内通过Homebrew安装或者更新软件的时候,除非挂上小飞机不然基本没速度,原因大家懂的。

不过挂小飞机也不是很方便,这里提供一个一劳永逸的方法,就是修改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

相关地址:

Comments