[toc]
一乏悄、Homebrew的安裝
命令1(這個命令不好使會報錯龙亲,如果報錯嘗試使用命令2或手動進行鏡像更換):
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
命令2(這是一個腳本陕凹,同樣可以安裝Homebrew):
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
使用命令2會自動出現(xiàn)鏡像國內(nèi)配置選擇,如下
二鳄炉、國內(nèi)鏡像源替換或重置
查看當前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
國內(nèi)鏡像地址
科大真香實例:
#替換 Homebrew
git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
#替換 Homebrew Core
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
#替換 Homebrew Cask
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
#替換 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
如果需要恢復原有鏡像源的話(國內(nèi)鏡像源突然不能用了或版本不夠新)
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
三杜耙、Homebrew的使用
1.查看Homebrew命令:brew help
2.安裝任意包:brew install <packageName>,eg:brew install node
3.卸載任意包:brew uninstall <packageName>拂盯,eg:brew uninstall git
4.查詢可用包:brew search <packageName>
5.查詢已安裝包列表:brew list
6.查看任意包信息:brew info <packageName>
7.更新Homebrew:brew update
8.Homebrew幫助信息:brew -h
8.查看brew版本:brew -v
10.更新brew版本:brew update
11.整理重復語句:open ~/.zshrc -e佑女、open ~/.bash_profile -e