当前位置: 代码迷 >> 综合 >> Homebrew 更新源
  详细解决方案

Homebrew 更新源

热度:10   发布时间:2023-12-08 16:22:16.0

Homebrew 更新源

替换 brew.git

cd "$(brew --repo)"# 清华大学源
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

替换 homebrew-core.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"# 清华大学:
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

替换 homebrew-bottles 

# 清华大学:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profilesource ~/.bash_profile

应用生效 

brew update

 

  相关解决方案