homebrew国内加速镜像配置

2022-11-21 11:32:27 浏览数 (1)

项目场景:

mac os, 使用homebrew作为包管理工具


问题描述

homebrew安装新工具的时候, 每次安装都会要update brew, 这时候会请求git http remote,


原因分析:

因为访问的git地址是github的, 网络经常会被封锁, 如何加速更新homebrew?


解决方案:

替换git地址为国内加速地址

设置

代码语言:javascript复制
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

还原

代码语言:javascript复制
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

诊断

代码语言:javascript复制
brew doctor
brew update-reset
brew update

引用

Mac Homebrew 国内镜像源替换或重置(brew update 没反应) - 知乎

0 人点赞