Mac 上最常用的软件包管理工具应该是 brew,本篇介绍如何在 Mac 上安装 brew.

homebrew 安装

官方网址是 Homebrew, 安装 brew 的方法就是下面一个命令:

1
2
3
4
5
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# 如果出现 Curl: (60: SSL no alternative certificate subject name matches target host name "raw.githubusercontent.com'
# 那么添加上 insecure,命令如下
/bin/bash -c "$(curl -fsSL --insecure https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

从国内镜像站安装

官方安装方法因为需要从 github 克隆下载代码,有时候会因为网络问题,下载不成功。此时,可以利用国内镜像站点进行下载安装:

1
2
3
4
5
6
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
export HOMEBREW_API_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/api"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/bottles"

/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"

更多镜像站点的查看请访问:Homebrew 中文网

使用 brew

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 搜索某个包
brew search wget

# 安装某个包
brew install wget

# Homebrew Cask installs macOS apps, fonts and plugins and other non-open source software.
brew install --cask firefox

# 更新
brew update

# 管理后台服务,查看使用说明
brew services --help

参考文献

  1. mac下镜像飞速安装Homebrew教程
  2. Homebrew
  3. Homebrew 中文网