Updating Homebrew 慢的解決方法

 

1, 替換成阿里巴巴的 brew.git 倉庫地址:

cd "$(brew --repo)"

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

  • # 還原爲官方提供的 
  • cd "$(brew --repo)"
  • git remote set-url origin https://github.com/Homebrew/brew.git

2,替換成阿里巴巴的 homebrew-core.git 倉庫地址:

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

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

  • 還原爲官方提供的
  • cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
  • git remote set-url origin https://github.com/Homebrew/homebrew-core.git

3,替換 / 還原 homebrew-bottles 訪問地址,這個步驟跟你的 macOS 系統使用的 shell 版本有關係

echo $SHELL

  • 結果是 /bin/zsh,參考下方的 zsh 方式
  • 結果是 /bin/bash,參考下方的 bash 方式

zsh方式: 替換成阿里巴巴的 homebrew-bottles 訪問地址:

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

source ~/.zshrc

bash方式:替換 homebrew-bottles 訪問 URL:

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

source ~/.bash_profile

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章