iMac系统更新造成brew 安装软件报错问题

时间:2021-9-8     作者:smarteng     分类: 开发工具


brew 安装软件报错

最近更新了IMac的系统,用 brew 安装东西时报错,查网页资料说好像是新系统的问题,之前的本没有遇到这问题
sudo brew install zbra

Running Homebrew as root is extremely dangerous and no longer supported.
As Homebrew does not drop privileges on installation you would be giving all
build scripts full access to your system.

解决安装软件报错问题

在网上各种查找解决问题。

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

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

但执行该命令又报错

chown: /usr/local: Operation not permitted

还有说执行

sudo chown -R $(whoami) $(brew --prefix)/*

但试过没用,报错依旧

最终

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

mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --str
标签: homebrew brew