美文网首页
新MAC 安装 brew install chisel

新MAC 安装 brew install chisel

作者: ThankShen | 来源:发表于2020-01-07 16:33 被阅读0次

brew 安装报错 Running Homebrew as root is extremely dangerous and no longer supported.

最近换了公司的MAC(系统10.14.4),用 brew 安装东西时报错,查网页资料说好像是新系统的问题,之前的本没有遇到这问题

终端执行 brew install chisel

报错:

RunningHomebrewasrootisextremely dangerous and no longer supported.AsHomebrewdoes not drop privileges on installation you would be giving allbuild scripts full access to your system.

网上查询后说是需要 /usr/local 的管理员身份

sudo chown -R $(whoami) /usr/local

但执行该命令又报错

chown: /usr/local: Operation not permitted

最终

在 Homebrew 官网看到,苹果最新系统用下面命令

mkdir homebrew&&curl-L https://github.com/Homebrew/brew/tarball/master|tar xz--strip1-C homebrew

搞定!

相关文章

网友评论

      本文标题:新MAC 安装 brew install chisel

      本文链接:https://www.haomeiwen.com/subject/tetdactx.html