有时我们在网络上看到别人使用 macOS 安装软件是使用的下面的命令,非常的方便。

1
brew install package

本文将介绍如何在 macOS 15 中安装 Homebrew ,让这个命令在您的 mac 中也生效,同时 Git 也将会被安装。

什么是 Homebrew

Homebrew 是一款自由及开放源代码的软件包管理系统,用以简化 macOS 系统上的软件安装过程。它拥有安装、卸载、更新、查看、搜索等很多实用的功能,通过简单的一条指令,就可以实现软件包管理,十分方便快捷。

安装 Homebrew

打开终端程序,在 Mac 上打开或退出“终端”:

  • 启动台 > 其他 > 终端
  • 启动台 或是 Commond⌘ + 空格 打开聚焦搜索,搜索 终端 或是 Terminal

官方源安装

如果无法访问 Github 可以查看使用镜像源安装的部分

复制安装命令

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

在终端内执行安装命令,安装时需要输入你的电脑密码进行授权:

1
2
==> Checking for `sudo` access (which may request your password)...
Password:

brew 会提示将安装的软件以及创建的文件夹,按回车继续,等待下载和安装完成。

结束后执行 brew -v 测试显示依然是错误 zsh: command not found: brew

需要照提示复制执行下面的三条命令添加 PATH :

1
2
3
echo >> /Users/me/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/me/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

如果使用了 oh-my-zsh ,则使用下面的命令。

1
2
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc   
source ~/.zshrc

bash 用户

1
2
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.bashrc   
source ~/.bashrc

然后可以执行 brew -v 测试安装结果,会成功显示 Hombrew 的版本号。

1
2
>brew -v
Homebrew 4.4.11

此时我们就可以使用 brew install 命令了

镜像源安装(中国大陆)

中国大陆用户推荐使用镜像源安装

可以直接使用下面的安装脚本

1
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

或是查看下面的内容

替换使用 阿里镜像源

1
2
3
4
5
echo 'export HOMEBREW_API_DOMAIN="https://mirrors.aliyun.com/homebrew-bottles/api"' >> ~/.zshrc
echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.aliyun.com/homebrew/brew.git"' >> ~/.zshrc
echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.aliyun.com/homebrew/homebrew-core.git"' >> ~/.zshrc
echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.aliyun.com/homebrew/homebrew-bottles"' >> ~/.zshrc
source ~/.zshrc
1
2
3
4
5
echo 'export HOMEBREW_API_DOMAIN="https://mirrors.aliyun.com/homebrew-bottles/api"' >> ~/.bash_profile
echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.aliyun.com/homebrew/brew.git"' >> ~/.bash_profile
echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.aliyun.com/homebrew/homebrew-core.git"' >> ~/.bash_profile
echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.aliyun.com/homebrew/homebrew-bottles"' >> ~/.bash_profile
source ~/.bash_profile

然后执行安装命令,从阿里云下载安装脚本并安装 Homebrew

1
2
3
git clone https://mirrors.aliyun.com/homebrew/install.git brew-install
/bin/bash brew-install/install.sh
rm -rf brew-install

也可从 GitHub 获取官方安装脚本安装 Homebrew

1
/bin/bash -c "$(curl -fsSL https://github.com/Homebrew/install/raw/master/install.sh)"

测试

1
brew -v

Homebrew 使用介绍

安装软件

1
2
3
4
5
6
7
8
9
10
11
# 搜索软件
brew search mysql

# 安装默认版本
brew install mysql

# 安装指定版本
brew mysql [email protected]

# 安装桌面软件
brew install --cask firefox

软件管理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 查看已安装软件
brew list

# 查看软件信息
brew info mysql

# 查看软件安装路径
brew list mysql

# 升级所有软件
brew upgrade

# 升级指定软件
brew upgrade wget

# 卸载软件
brew uninstall wget

服务管理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 查看所有服务
brew services list

# 查看指定服务
brew services info mysql

# 启动服务
brew services start mysql

# 重启服务
brew services restart mysql

# 停用服务
brew services stop mysql

# 移除服务
brew services remove mysql

# 移除所有未使用服务
brew services cleanup

其他

1
2
3
4
5
# 检查Homebrew
brew doctor

# 升级Homebrew
brew update

卸载Homebrew

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

参考: 在macOS上安装&配置Homebrew