当前位置:   article > 正文

Mac下Homebrew更新国内源brew update卡死(完美解决)_brew update --auto-update速度慢

brew update --auto-update速度慢

先更新下brew

有时brew版本太旧也会有问题

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

再更新国内源

  1. #更新Homebrew
  2. cd "$(brew --repo)"
  3. git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
  4. #更新Homebrew-core
  5. cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
  6. git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
  7. #更新Homebrew-cask(最重要的一步,很多更新完国内源依然卡就是没更新这个)
  8. cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
  9. git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

更新HOMEBREW_BOTTLE_DOMAIN

最重要

  • 使用zsh的用户
  1. echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.zshrc
  2. source ~/.zshrc
  • 使用bash的用户
  1. echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.bash_profile
  2. source ~/.bash_profile

更新库

brew update -v

#或都使用下面的更新

brew update-reset 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/457153
推荐阅读
相关标签
  

闽ICP备14008679号