Mac安装brew
设置xode环境
xcode-select --switch /Applications/Xcode.app/Contents/Developer
官方安装,要🪜才行
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
开源中国镜像安装
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
中科大镜像安装
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
可选设置
替换 brew.git
git -C "$(brew --repo)" remote set-url origin https:
替换homebrew-core
git -C "$(brew --repo homebrew/core)" remote set-url origin https:
替换 homebrew-cask
git -C "$(brew --repo homebrew/cask)" remote set-url origin https:
替换homebrew-bottles
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
更新设置
brew update
卸载
中科大镜像卸载
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/uninstall)"
开源中国镜像卸载
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"