MacOS中更改为国内源
源华源
1 2 3 4 5 6 7 8 9 10
| # 替换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
# 刷新源 brew update
|
中科大源
1 2 3 4 5 6 7
| 替换brew.git: cd "$(brew --repo)" git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
替换homebrew-core.git: cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
|
阿里源
1 2 3 4 5 6 7 8 9 10
| # 替换brew.git cd "$(brew --repo)" git remote set-url origin https://mirrors.aliyun.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
# 刷新源 brew update
|
腾讯源
1 2 3 4 5 6 7 8 9 10
| 替换brew.git: cd "$(brew --repo)" git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git
替换homebrew-core.git: cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/homebrew-core.git
# 刷新源 brew update
|
Homebrew Bottles源
Homebrew预编译二进制软件包
临时替换
1
| export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
|
永久替换
1 2 3 4 5
| # 对于 bash 用户 echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"' >> ~/.bash_profile
# 对于 zsh 用户 echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"' >> ~/.zshrc
|
Homebrew Cask源
Homebrew cask软件仓库,提供MacOS应用和大型二进制文件,请先运行brew update
将brew
更新至3.2.17或以上版本
重置为官方地址
1
| brew tap --custom-remote --force-auto-update homebrew/cask https://github.com/Homebrew/homebrew-cask
|