简体   繁体   中英

Homebrew install issues

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 :(

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.

这件事告诉我告诉你更新那个安装命令

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM