HomeBrew太慢,如何替换默认HomeBrew源,使用阿里云的源
Posted housestudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HomeBrew太慢,如何替换默认HomeBrew源,使用阿里云的源相关的知识,希望对你有一定的参考价值。
替换homebrew使用阿里云的源
# 替换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 # 应用生效 brew update # 替换homebrew-bottles: echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles‘ >> ~/.zshrc source ~/.zshrc
使用回官方源:
1 # 重置brew.git: 2 cd "$(brew --repo)" 3 git remote set-url origin https://github.com/Homebrew/brew.git 4 # 重置homebrew-core.git: 5 cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" 6 git remote set-url origin https://github.com/Homebrew/homebrew-core.git 7 8 #删除zshrc HOMEBREW_BOTTLE_DOMAIN内容
以上是关于HomeBrew太慢,如何替换默认HomeBrew源,使用阿里云的源的主要内容,如果未能解决你的问题,请参考以下文章