使用國內(nèi)的鏡像替換homebrew鏡像,對鏡像進(jìn)行加速源
原先我們執(zhí)行brew命令安裝的時候,跟3個倉庫地址有關(guān)
1 brew.git
2 homebrew-core.git
3 homebrew-bottles
把三個倉庫地址全部替換成國內(nèi)Alibaba提供的地址
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 替換/還原h(huán)omebrew-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 替換/還原h(huán)omebrew-bottles
3.1 這個步驟跟你的macOs系統(tǒng)使用的shell版本有關(guān)系,首先查看shell版本
echo $SHELL
如果你的輸出結(jié)果是 /bin/zsh,參考?的 zsh 終端操作方式
如果你的輸出結(jié)果是 /bin/bash,參考?的 bash 終端操作方式
3.2 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
3.3 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文章來源:http://www.zghlxwxcb.cn/news/detail-717260.html
然后,刪除 HOMEBREW_BOTTLE_DOMAIN 這一行配置
source ~/.bash_profile文章來源地址http://www.zghlxwxcb.cn/news/detail-717260.html
到了這里,關(guān)于homebrew使用國內(nèi)源的文章就介紹完了。如果您還想了解更多內(nèi)容,請?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!