Homebrew 包管理器总结
参考文档:https://brew.sh/
安装目录:/usr/local/Cellar
Homebrew
- Cask 通常用于安装一些带有图形界面的应用程序。
- Formulae 则是用于安装命令行工具和软件包的规则和脚本。
cask
常用的 cask:
1 | $ brew install --cask iterm2 |
formula
常用的 formula:
1 | $ brew install coreutils |
tap
MongoDB
https://www.mongodb.com/zh-cn/docs/manual/tutorial/install-mongodb-on-os-x/
https://github.com/mongodb/homebrew-brew
1 | $ brew tap mongodb/brew |
services
例子
1 | $ brew services start mysql@8.4 |
国内加速
Homebrew 源替换为 USTC 镜像:http://mirrors.ustc.edu.cn/help/brew.git.html
Homebrew 关闭自动更新:https://github.com/Homebrew/homebrew-autoupdate
1 | export HOMEBREW_NO_AUTO_UPDATE="1" |