macOS上的包管理器——brew
什么是homebrew?
引用官网的介绍,homebrew是:
The Missing Package Manager for macOS (or Linux)
翻译过来就是:
macOS(或 Linux)缺失的软件包的管理器
macOS本身不包含包管理器(当然你要是非说xcode-select –install也是的话那当我没说)
安装homebrew
自动安装
1 | /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" |
这条命令将自动安装,使用国内源
手动安装(可选)
首先
1 | xcode-select --install |
安装Command Line Tools
再
1 | export HOMEBREW_INSTALL_FROM_API=1 |
针对Apple silicon的用户:
1 | if test -r ~/.bash_profile;then echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile;else touch ~/.bash_profile && echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile;fi |
这个时候执行:
1 | brew -v |
查看是否安装完成
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Niko的小博客!