brew 方式: 成功
这个方式装的用起来很不舒服,后期更新出问题。
下载:
https://github.com/Homebrew/brew/releases/tag/4.1.6
下载后 双击就可以,
会遇到 问题:
You must install the Command Line Tools (CLT) before installing Homebrew by running `xcode-select --install` from a Terminal.
解决方案:连接
安装后 需要配置一下环境变量
/opt/homebrew on Apple Silicon
usr/local/bin/brew and /usr/local/Homebrew on Intel
白眉大叔这里是 M2 所以选择第一个
然后写入环境变量
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.bash_profile
source /etc/bash_profile
这里的环境变量有问题,mac 改成了zsh
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
这样就可以了。
欢迎来撩 : 汇总all