本文主要是介绍Homebrew下载软件卡住慢更换国内镜像源,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
我这里更换的是清华镜像源当然还有很多其他镜像源你可以根据自己的网络情况来定
更换为清华源来加快速度。网址为:https://mirrors.tuna.tsinghua.edu.cn/help/homebrew
清华镜像源官方网站:https://tuna.moe/
下面是详细的更换步骤
cd "$(brew --repo)"git remote set-url origin
https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.gitcd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.gitbrew update
替换为中科大镜像
替换HomeBrew默认源
cd "$(brew --repo)"
git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
替换HomeBrew Bottles源
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
brew update可能有点慢需要几分钟,这个根据自己的情况来定需要耐心的等待
其他完整文章: https://blog.csdn.net/eric_coding/article/details/53329073#brew-cask-%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4
https://www.jianshu.com/p/5f1efab5a40a
这篇关于Homebrew下载软件卡住慢更换国内镜像源的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!