我已经卸载和安装了3次Homebrew,因为它似乎永远不允许我安装任何东西,因为它在大多数安装结束时拒绝我的权限。

作为一个例子,我将发布我目前面临的libjpeg下载场景。

我尝试安装libjpeg并获得:

$ brew install libjpeg
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/jpeg-8d.mountain_lion.bottle.1.tar.gz
Already downloaded: /Library/Caches/Homebrew/jpeg-8d.mountain_lion.bottle.1.tar.gz
==> Pouring jpeg-8d.mountain_lion.bottle.1.tar.gz
Warning: Could not link jpeg. Unlinking...
Error: The brew link step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using `brew link jpeg'
Error: Permission denied - /usr/local/opt/jpeg

'brew link jpeg'的结果

Error: Permission denied - /usr/local/opt/jpeg

这是我的酿酒医生读的

$ brew doctor
Warning: "config" scripts exist outside your system or Homebrew directories.
./configure scripts often look for *-config scripts to determine if
software packages are installed, and what additional flags to use when
compiling and linking.

Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew provided
script of the same name. We found the following "config" scripts:

/Library/Frameworks/Python.framework/Versions/2.7/bin/python-config
/Library/Frameworks/Python.framework/Versions/2.7/bin/python2-config
/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7-config
Warning: You have unlinked kegs in your Cellar
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on
those kegs to fail to run properly once built. Run brew link on these:

jpeg

这个许可问题已经使它不可能使用酿造任何东西,我真的很感激任何建议。


当前回答

这招对我很管用:

sudo chown -R "$USER":admin /usr/local/Cellar/*
brew cleanup

其他回答

对于像我一样降落在这里的人来说,第一选择是,按照这个建议去做:

brew doctor

这是最安全的方法,除此之外,它还建议我:

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

这解决了权限问题。

OP这样做了,但显然没有得到上述建议;你可能会,从这里开始总是更好的,然后再寻找非平凡解如果它没有帮助的话。

github上有一个杀手级脚本,可以修复/usr/local和brew目录上的烫发,使任何“admin”组的成员都可以访问。

https://gist.github.com/jaibeee/9a4ea6aa9d428bc77925

这是一个比选择的答案更好的解决方案,因为如果你把/usr/local/___目录改为$USER,那么你就破坏了那台机器上任何其他homebrew的管理用户。

以下是我发布这篇文章时脚本的核心内容:

chgrp -R admin /usr/local
chmod -R g+w /usr/local

chgrp -R admin /Library/Caches/Homebrew
chmod -R g+w /Library/Caches/Homebrew

chgrp -R admin /opt/homebrew-cask
chmod -R g+w /opt/homebrew-cask

在我的情况下,我有问题删除和重新安装SaltStack。

在运行:

ls -lah /usr/local/Cellar/salt/

我注意到群组主人是“员工”。(顺便说一下,我运行的是macOS Mojave 10.14.3版。)员工组可能与我的工作场所配置有关,但我真的不知道。无论如何,我保留了这个小组,以防止自己进一步破坏任何东西。

然后我跑了起来:

sudo chown -R "$USER":staff /usr/local/Cellar/salt/

在那之后,我成功地用这个命令删除了它(不是以root用户):

brew uninstall --force salt

对于多用户Mac来说,这对我来说是可行的:

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

卸载brew并使用以下命令重新安装,以确保到brew github的链接和本地文件夹的相关权限正常工作:

ruby / usr / bin / e,“美元(卷毛-fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

这很有效。我自己没有权限,只是重新安装了Homebrew,它可以工作!

来源:https://gist.github.com/irazasyed/7732946 # gistcomment - 2298740