写点什么

解决 Homebrew 下载更新速度慢问题

发布于: 2021 年 02 月 08 日

替换 brew.git:

cd "$(brew --repo)"

git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git

替换 homebrew-core.git:

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"

git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git

替换 homebrew-bottles:

echo 'export HOMEBREWBOTTLEDOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc

source ~/.zshrc

替换 homebrew-cask.git:

cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask

git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git


具体可参考解决 Homebrew 下载更新极慢的问题

用户头像

因为只会扯淡,还扯不好淡,所有想扯点什么 2017.11.30 加入

还未添加个人简介

评论

发布
暂无评论
解决Homebrew下载更新速度慢问题