美文网首页
Mac解决brew安装软件速度太慢的问题,亲测有效

Mac解决brew安装软件速度太慢的问题,亲测有效

作者: 西江月影 | 来源:发表于2020-03-01 22:18 被阅读0次

1. 首先替换Homebrew源

// 替换brew.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

2. 更新bash_profile

// 如果home目录下没找到.bash_profile文件直接创建即可
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile

最后别忘了执行更新 source ~/.bash_profile

相关文章

网友评论

      本文标题:Mac解决brew安装软件速度太慢的问题,亲测有效

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