mac homebrew /usr/local权限问题,卸载重装

mac上的brew因为版本问题导致无法安装opencv,需要更新brew,但是更新brew又反复提示‘/usr/local目录无权限’,当时并没有想到是因为mac内置的SIP机制在作乱,这个机制是用来防护mac系统的软件,可以在terminal上输入 csrutil status 查看当前的SIP运行状态,如果显示为 System Integrity Protection status: disabled. 说明处于关闭状态,如果显示的是enable则需要关闭SIP。关闭步骤如下:

1.关机MAC

2.开机时后按下 Command+R,进入恢复模式。

3.在上面的菜单实用工具中找到并打开 Terminal

4.输入以下命令

csrutil disable

csrutil status

#显示System Integrity Protection status:disabled说明已经关闭

5.正常开机即可。

此时再进行brew update操作。

---------------------------------------------------分隔符-----------------------------------------------------

安装homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

卸载homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"  

 

 

你可能感兴趣的:(linux)