美文网首页
Mac Homebrew 国内镜像源替换或重置

Mac Homebrew 国内镜像源替换或重置

作者: _Van丶 | 来源:发表于2020-01-14 22:23 被阅读0次

Notice: 本人Mac 系统版本为 Mojave 10.14.5

查看当前Homebrew 镜像源
# brew.git镜像源
git -C "$(brew --repo)" remote -v

# homebrew-core.git镜像源
git -C "$(brew --repo homebrew/core)" remote -v

# homebrew-cask.git镜像源
git -C "$(brew --repo homebrew/cask)" remote -v
国内镜像地址
以科大的为例:
git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git

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

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

if [ $SHELL = "/bin/bash" ] # 如果你的是bash
then 
    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.bash_profile
    source ~/.bash_profile
elif [ $SHELL = "/bin/zsh" ] # 如果用的shell 是zsh 的话
then
    echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.zshrc
    source ~/.zshrc
fi

brew update
如果需要恢复原有镜像源的话(国内镜像源突然不能用了或版本不够新)
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git

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

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

# 找到 ~/.bash_profile 或者 ~/.zshrc 中的HOMEBREW_BOTTLE_DOMAIN 一行删除

brew update
如果可以了下面的就不用看了
如果不行的话可以依次尝试以下命令
brew doctor
brew update-reset
brew update

推荐阅读: 有趣的 Homebrew 命名

以上,Van(完)。

相关文章

网友评论

      本文标题:Mac Homebrew 国内镜像源替换或重置

      本文链接:https://www.haomeiwen.com/subject/dskzactx.html