Homebrew

What is Homebrew?

Homebrew 是一款 Mac OS 平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。通过简单的一条指令,就可以实现包管理,不需要关心各种依赖和文件路径的情况。

Homebrew 的两个术语:

Homebrw相关的几个文件夹用途:

常用的 brew 命令:

Homebrew 提供了两种安装软件的方式,brew install 和 brew cask install,下面对两种方式进行一些解释说明。

brew install

brew 是下载源码解压,然后 ./configure && make install ,同时会包含相关依存库,并自动配置好各种环境变量。

Homebrew is the easiest and most flexible way to install the UNIX tools Apple didn't include with macOS.

对于对程序员只需通过简单的指令,就能快速安装和升级本地的各种开发环境,非常快捷方便。

brew cask install

brew cask 是针对已经编译好了的应用包(.dmg/.pkg)下载解压,然后放在统一的目录中(Caskroom),省掉了自己下载、解压、安装等步骤。

Homebrew-Cask extends Homebrew and brings its elegance, simplicity, and speed to macOS applications and large binaries alike.

这个对一般用户来说会比较方便,包含很多在 AppStore 里没有的常用软件。

总结


References


Home