Mac安装软件包管理器Homebrew及其常用命令

Homebrew是macOS的软件包管理器

安装

在终端执行以下指令:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  • 将以上命令粘贴至终端。
  • 脚本会在执行前暂停,并说明将它将做什么。高级安装选项在 这里 (required for Linux and Windows Subsystem for Linux)。
  • 下载完成后,会在终端看到打印 Installation Successful!

Mac安装软件包管理器Homebrew及其常用命令

卸载

在终端执行以下指令:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

常用命令:


brew –help		//查看brew的帮助
brew search nginx		//搜索软件
brew install nginx		//安装软件
brew reinstall nginx  //重新安装
brew upgrade nginx		//更新某具体软件
brew uninstall nginx	//卸载软件
brew [info | home] [nginx] //查看软件信息
brew cleanup nginx 	//删除程序,和upgrade一样,单个软件删除和所有程序老版删除。
brew list	//显示已经安装软件列表
brew update	//更新软件,把所有的Formula目录更新,并且会对本机已经安装并有更新的软件用*标明。
brew services list	//列出当前所有的服务
brew services run nginx //运行服务而不设置开机自启动
brew services start nginx // 启动服务并注册开机自启动
brew services stop nginx // 停止,并取消开机自启动
brew services restart nginx //重启,并且注册开机自启
brew services cleanup //清理残留的旧版本及相关日志
上一篇:mac 10.15 国内如何安装brew


下一篇:MacOS中Elasticsearch的安装「借助Homebrew」