本文主要是下载安装包安装homebrew,然后配置环境变量Path。检验是否安装成功。
homebrew地址:macOS(或 Linux)缺失的软件包的管理器 — Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
安装缓慢,需要等待很久,可能还会安装失败。
安装过程中注意安装界面的信息:
每个界面都可以看看,需要注意的是inter 芯片 与 apple 芯片的安装路径是不一样的,安装过程中 右侧界面会有安装路径显示。
可根据实际情况把路径写入 .bash_profile 还是 .zshrc 中
export PATH="/opt/homebrew/bin:$PATH"
source ~/.bash_profile
source ~/.zshrc
vim ./bash_profile
export PATH="/opt/homebrew/bin:$PATH"
source ./bash_profile
apple chip 是使用zshrc。
(主要目的是检验是否安装成功)
brew --version