介绍
Homebrew 是一个适用于 macOS 和 Linux 操作系统的开源包管理器,它允许用户轻松安装、升级和管理各种软件包和工具。Homebrew 的目标是简化软件包的安装和维护过程,使用户能够快速获取他们所需的工具和应用程序。
安装
1、官网推荐安装方式,如果在国内,要使用vpn才可以访问通
在 macOS 上安装 Homebrew:
打开终端(Terminal)应用程序并运行以下命令:
powershell
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
在 Linux 上安装 Homebrew:
首先,确保你的 Linux 发行版支持 Homebrew。然后,在终端中运行以下命令:
powershell
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2、国内安装方式
在 macOS 上安装 Homebrew:
打开终端(Terminal)应用程序并运行以下命令:
bash
#常规安装脚本(推荐 完全体 几分钟安装完成)
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)")"
#极速安装脚本(精简版 几秒钟安装完成)
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" speed
在 macOS 上卸载 Homebrew:
bash
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
在 Linux 上安装 Homebrew:
首先,确保你的 Linux 发行版支持 Homebrew。然后,在终端中运行以下命令:
bash
rm Homebrew.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh ; bash Homebrew.sh
在 Linux 上卸载 Homebrew:
bash
rm HomebrewUninstall.sh ; wget https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh ; bash HomebrewUninstall.sh
国内安装常见报错:https://gitee.com/cunkai/HomebrewCN/blob/master/error.md
使用
1、安装成功后在命令行输入测试:
bash
brew
2、安装git,示例
bash
#安装git前看都homebrew包管理器都有哪个版本
brew search git
#默认下载latest版本
brew install git
可参考官方文档,具体操作:https://docs.brew.sh/Manpage