一、安装
- 安装Homebrew(源码)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
- 安装Homebrew cask(dmg/pkg)
brew install caskroom/cask/brew-cask
- 更换软件仓库
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
#替换为 USTC 镜像
- 重置为官方地址
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://github.com/Homebrew/homebrew-cask#
二、卸载
$ cd `brew --prefix`
$ rm -rf Cellar
$ brew prune
$ rm `git ls-files`
$ rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
$ rm -rf .git
$ rm -rf ~/Library/Caches/Homebrew
三、管理
brew list --versions #列出已安装的包(包括版本号)
brew install ffmpeg #安装FFmepg
brew cask install alfred #安装Alfred
brew search wget #搜索可用的软件
brew cask search alfred #搜索可用的软件
brew update #更新Homebrew
brew outdated #列出可升级的包
brew upgrade #更新所有的包
brew upgrade $alfred #更新指定的包
brew pin $alfred #不更新指定包
brew unpin $alfred #取消不更新
brew cleanup -n #查看可清理的旧版本包
brew cleanup #清理所有旧版本的包
brew cleanup $alfred #清理指定的旧版本包
brew uninstall alfred --force #彻底卸载软件包
brew --cache #查看包存放路径
brew info $<软件包> #显示某个包信息
brew info #显示安装的包数量、文件数量以及占用空间
brew deps --installed --tree #查看软件包依赖
四、常用套件
源码安装包
dmg/pkg安装包
- alfred——快速启动
- mounty——NTFS读写
- picgo——免费图床合集
安装目录
/usr/local/Cellar/<package_name>/<version>/