HomeBrew 使用国内数据源

Posted dowhile

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HomeBrew 使用国内数据源相关的知识,希望对你有一定的参考价值。

使用中科大源

1、替换默认源

替换USTC镜像:

cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

重置为官方地址:

cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git

2、替换homebrew-core.git

替换 USTC 镜像:

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

重置为官方地址:

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core

brew update

3、替换Homebrew Bottles源

请在运行 brew 前设置环境变量 HOMEBREW_BOTTLE_DOMAIN ,值为 https://mirrors.ustc.edu.cn/homebrew-bottles

对于 bash 用户:

echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles‘ >> ~/.bash_profile
source ~/.bash_profile

对于 zsh 用户:

echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles‘ >> ~/.zshrc
source ~/.zshrc

4、替换 Homebrew Cask 源

替换为 USTC 镜像:

cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

重置为官方地址:

cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://github.com/Homebrew/homebrew-cask

以上是关于HomeBrew 使用国内数据源的主要内容,如果未能解决你的问题,请参考以下文章

MacBook Pro Homebrew 国内镜像加速

国内homebrew安装

brew转为国内源

brew转为国内源

更换 homebrew 国内镜像源

MACOS-国内安装HomeBrew-配置国内镜像(如果报错找不到文件夹则创建它)