1.下载:使用国内镜像
https://zhuanlan.zhihu.com/p/111014448
2.与之前的intel芯片不同,m1的homebrew安装在/opt/homebrew
目录下
文件一般在 /opt/homebrew/cellar/appname
配置文件一般在 /opt/homebrew/etc/appname下
日志文件在 /opt/homebrew/var/log 下
3.常用命令
查看已安装的软件信息,包括路径
brew info appname
如果需要查看某个软件全部文件安装信息:
nginx -V
使用brew services管理服务
查看可管理服务列表
brew services list
启动服务,以nginx为例,停止同理
brew services start nginx