Homebrew是什么?
简单来说,就是用命令行的形式去管理mac系统的包或软件。
安装命令
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
国内请使用镜像源进行下载
执行上述命令后会要求输入系统密码,输入后会暂停提示将会在系统中安装哪些文件脚本等,按回车键即可继续。
出现Installation successful!后,注意看下面的Next steps,会要求你依次输入指定的指令(把homebrew加到path中),直接复制粘贴到terminal运行即可。
运行上面的命令后不会有任何提示
使用以下命令进行版本查询,若有结果输出则证明成功安装!
$ brew -v
简单使用示例:
下载包,如wget
$ brew install wget
下载软件,如firefox
$ brew install --cask firefox
Homebrew下载的软件将放在自己的目录下 /opt/homebrew (on Apple Silicon).查看命令
$ cd /opt/homebrew
$ find Cellar
Cellar/wget/1.16.1
Cellar/wget/1.16.1/bin/wget
Cellar/wget/1.16.1/share/man/man1/wget.1
$ ls -l bin
bin/wget -> ../Cellar/wget/1.16.1/bin/wget
官网在这
https://brew.sh