Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am having some trouble with brew installs. So I have done the following:

Uninstalled homebrew with:

$ rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup


Reinstalled homebrew with:

$ ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go/install)"


$ brew update

Already up-to-date.

$ brew doctor

Your system is raring to brew.


Try running any install & I get the following output:

$ brew install node

Error: Permission denied - /Library/Caches/Homebrew/Formula/node.brewing


What is going on here? This is also giving me issues with using npm and yeoman which I'd really like to use :(

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
730 views
Welcome To Ask or Share your Answers For Others

1 Answer

Did you perhaps install brew with an other user, or with sudo previously?

Check the permissions of /Library/Caches/Homebrew, and force it to be writable for your user, by either changing its owner, or its permissions.

You might also try to uninstall with something like https://gist.github.com/1173223 and try the install again.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...