Homebrew安装笔记
Homebrew安装笔记
简单记录一下Homebrew安装
下载
新建终端,以下命令安装:
1 | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
配置国内镜像
替换 brew.git
1 | cd "$(brew --repo)" && git remote set-url origin https://mirrors.ustc.edu.cn/brew.git |
替换 homebrew-core.git
1 | cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git |
Homebrew Bottles 配置镜像
以zsh为例
1 | echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc && source ~/.zshrc |
恢复默认官方源
重置brew.git:
1 | cd "$(brew --repo)" && git remote set-url origin https://github.com/Homebrew/brew.git |
重置homebrew-core.git:
1 | cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" && git remote set-url origin https://github.com/Homebrew/homebrew-core.git |
注释掉 zsh 配置文件里的有关 Homebrew Bottles 即可恢复官方源。 重启 zsh 或让 zsh 重读配置文件。
参考资料
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Damingerdai's Blog!