homebrew更新源

Posted a531248552

tags:

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

brew 安装软件比较方便,国内源下载会比较快,但是有时下载会失败

所有有时需要切换国内与默认的源

切换国内源

# 替换brew.git:
$ cd "$(brew --repo)"
# 中国科大:
$ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
# 清华大学:
$ 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.ustc.edu.cn/homebrew-core.git
# 清华大学:
$ 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.ustc.edu.cn/homebrew-bottles >> ~/.bash_profile
$ source ~/.bash_profile
# 清华大学:
$ echo export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles >> ~/.bash_profile
$ source ~/.bash_profile

# 应用生效:
$ brew update

切换到官方默认

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

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

 有的时候更新不成功,可能是因为在配置文件中已经配置了,可以在~.bash_profile 中把带有homebrew的配置项注释后尝试

以上是关于homebrew更新源的主要内容,如果未能解决你的问题,请参考以下文章

更新 Homebrew 桶版本

Homebrew 更新慢问题

macOS 替换 Homebrew 源

macOS 替换 Homebrew 源

Mac/Homebrew brew update慢的方法

如何使用 Homebrew 更新公式?