在國內的網絡環境下使用 Homebrew 安裝軟件的過程當中可能會長時間卡在 Updating Homebrew 這個步驟。git
例:執行 brew install composer 命令github
➜ ~ brew install composer Updating Homebrew... # 若是碰到長時間卡在這裏,參考如下 2 種處理方法
➜ ~ brew install composer Updating Homebrew... ^C
按住 control + c 以後命令行會顯示 ^C,就表明已經取消了 Updating Homebrew 操做shell
大概不到 1 秒鐘以後就會去執行咱們真正須要的安裝操做了bash
➜ ~ brew install composer Updating Homebrew... ^C==> Satisfying dependencies ==> Downloading https://getcomposer.org/download/1.7.2/composer.phar ...
這個方法是臨時的、一次性的網絡
平時咱們執行 brew 命令安裝軟件的時候,跟如下 3 個倉庫地址有關:composer
brew.giturl
homebrew-core.gitspa
經過如下操做將這 3 個倉庫地址所有替換爲 Alibaba 提供的地址命令行
# 替換成阿里巴巴的 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
# 替換成阿里巴巴的 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
這個步驟跟你的 macOS 系統使用的 shell 版本有關係code
因此,先來查看當前使用的 shell 版本
echo $SHELL # 若是你的輸出結果是 /bin/zsh,參考?的 zsh 終端操做方式 # 若是你的輸出結果是 /bin/bash,參考?的 bash 終端操做方式
# 替換成阿里巴巴的 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
# 替換 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