Mac的homebrew更換爲阿里巴巴的源 (解決下載速度過慢問題)

1、替換/還原brew.git倉庫地址

# 替換成阿里巴巴的 brew.git 倉庫地址:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
 
#=======================================================
 
# 還原爲官方提供的 brew.git 倉庫地址
cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git

2、替換/還原homebrew-core.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
 
#=======================================================
 
# 還原爲官方提供的 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版本有關係,首先查看shell版本
echo $SHELL

# 如果你的輸出結果是 /bin/zsh,參考?的 zsh 終端操作方式
# 如果你的輸出結果是 /bin/bash,參考?的 bash 終端操作方式

4、zsh終端操作方式

# 替換成阿里巴巴的 homebrew-bottles 訪問地址:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
 
#=======================================================
 
# 還原爲官方提供的 homebrew-bottles 訪問地址
vi ~/.zshrc
# 然後,刪除 HOMEBREW_BOTTLE_DOMAIN 這一行配置
source ~/.zshrc

5、bash終端操作方式

# 替換 homebrew-bottles 訪問 URL:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
 
#=======================================================
 
# 還原爲官方提供的 homebrew-bottles 訪問地址
vi ~/.bash_profile
# 然後,刪除 HOMEBREW_BOTTLE_DOMAIN 這一行配置
source ~/.bash_profile

6、遇到困難可以評論(有信必回)小軒微信17382121839

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