美文网首页
Mac Homebrew镜像

Mac Homebrew镜像

作者: 克洛斯贝尔 | 来源:发表于2020-10-07 18:25 被阅读0次

众所周知 Homebrew 很慢
那么,你该出个分身斧,弄个镜像了。

参考
https://www.zhihu.com/question/31360766/answer/749386652

替换 Homebrew

git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git

替换 Homebrew Core

git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

替换 Homebrew Cask

git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

替换 Homebrew-bottles

对于 bash 用户:

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile

对于 zsh 用户:

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc

相关文章

网友评论

      本文标题:Mac Homebrew镜像

      本文链接:https://www.haomeiwen.com/subject/wyxqpktx.html