先更新下brew
有时brew版本太旧也会有问题
1 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
再更新国内源
1 | #更新Homebrew |
更新HOMEBREW_BOTTLE_DOMAIN
最重要
- 使用zsh的用户
1 | echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.zshrc |
- 使用bash的用户
1 | echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.bash_profile |
更新库
1 | brew update-reset |
如果卡住的话,直接进行升级
1 | brew upgrade |