安装homebrew
程序员文章站
2024-02-23 17:30:34
...
homebrew安装太慢!
主要原因还是git下载太慢,然后发现git要快还要用到brew去安装privoxy,心态崩了有没有?!
目前速度较快的brew镜像源是ustc的。那么开始操作吧。
安装
下载安装脚本
拷贝粘贴完成后,赋予它执行权限
chmod a+x install.sh
修改git源
vim install.sh
BREW_REPO="https://github.com/Homebrew/brew"
修改为
BREW_REPO="https://mirrors.ustc.edu.cn/brew.git"
执行安装脚本
./install
直接克隆homebrew-core
是的,安装脚本中没地方改homebrew-core的源。所以下载homebrew-core依然很慢,这个时候可以中断安装程序,直接克隆ustc源的homebrew-core。
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git clone https://mirrors.ustc.edu.cn/homebrew-core.git
更改源
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
# 替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
更新
brew update
之后就可以快乐地玩耍了。
下一篇: Linux grep、find命令