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內容

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM