安装brew
执行以下命令即可安装brew最新版本(https://github.com/Homebrew/install)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
更新brew
1,最简单粗暴方式:卸载现有版本brew,重新安装最新版本
卸载现有版本,执行
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
安装最新版本,执行
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2,不愿采用先卸载再安装方式的话,可以如下操作
执行以下命令
brew update
报错:Error: /usr/local must be writable!
需要赋给/usr/local目录权限,执行sudo chown -R $(whoami) /usr/local,即
sudo chown -R fxp /usr/local
其中fxp为系统当前用户名。
继续报错:chown: /usr/local: Operation not permitted
这是Mac OS 10.13版本之后加强了权限的限制,尤其是对/usr/local目录,默认开通 SIP (System Intergrity Protection),它禁止了软件以root身份在Mac上运行(参考https://blog.csdn.net/shaobo8910/article/details/81121314)。
解决办法:关闭SIP
1.重启Mac,按住Command + R键直到Apple Logo出现,进入Recovery Mode模式
2.点击工具里的Terminal(终端)
3.执行 csrutil disable
4.重启Mac
5.重启完成后,执行 sudo chflags norestricted /usr/local && sudo chown -R fxp/usr/local
(如果想重新开启安全设置,则重复1、2步骤,输入csrutil enable就可以了)
---------------------
作者:卓洛不迷路
来源:CSDN
原文:https://blog.csdn.net/fxp850899969/article/details/53284193
版权声明:本文为博主原创文章,转载请附上博文链接!