摘要:
本文主要是下载安装包安装homebrew,然后配置环境变量Path。检验是否安装成功。
homebrew地址:macOS(或 Linux)缺失的软件包的管理器 — Homebrew
在终端命令下载安装:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
安装缓慢,需要等待很久,可能还会安装失败。
下载安装包安装:
安装过程中注意安装界面的信息:每个界面都可以看看
配置Path:
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
实操:
- 创建并打开bash_profile 文件
vim ./bash_profile
-
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.bash_profile export PATH="/opt/homebrew/bin:$PATH"
- 按键 esc 然后输入 :wq 退出并保存
- 最后运行
source ./bash_profile
查看版本
(主要目的是检验是否安装成功)
brew --version