brew更新镜像源进行update

问题

Homebrew是OS X上类似APT(apt-get)Yum的一个软件包管理器。
所以,虽然你侥幸下载到了brew,但你肯定是无法更新brew的。原因你懂。不过虽然不能更新brew,但这只是指brew这个管理器本身罢了,软件还是可以安装的。但由于无法使用brew update也就无法更新软件。我们有必要来给brew换源。

推荐镜像源

Coding推出了Brew国内镜像源,速度挺快的。

$ cd /usr/local && git remote set-url origin https://git.coding.net/homebrew/homebrew.git
$ cd $home && brew update

解决

cd /usr/local
//清华镜像源
git remote set-url origin git://mirrors.tuna.tsinghua.edu.cn/homebrew.git
//中科大镜像源
git remote set-url origin http://mirrors.ustc.edu.cn/homebrew.git
//三者选其一即可更新

如果速度还是很慢,可以尝试以下操作:

cd ~/tmp
//以下两个选一个(要与你之前选择的镜像源相同)
git clone git://mirrors.tuna.tsinghua.edu.cn/homebrew.git
git clone http://mirrors.ustc.edu.cn/homebrew.git

rm -rf /usr/local/.git
rm -rf /usr/local/Library
cp -R homebrew/.git /usr/local/
cp -R homebrew/Library /usr/local/

然后重试brew update


再一次感谢您花费时间阅读这篇文章!

微博: @Danny_吕昌辉
博客: SuperDanny

上一篇:Xcode上Version和Build


下一篇:OS X El Capitan系统下使用brew报错问题