Attempting to install rvm and ruby 1.9.2

I already installed homebrew and git, but couldn't get complete updates because I kept getting permission errors. Re-installed Snow Leopard and repaired permissions.

Now this happens...

$ brew install wget

Error: Cannot write to /usr/local/Cellar

link|improve this question
Did you try sudo? – Jonas Elfström Jan 26 '11 at 12:31
Can you accept the answer by Ben, as it obviously is a solution to your issue – Abe Petrillo May 11 at 8:06
feedback

2 Answers

sudo chown -R $USER /usr/local

You'll have to give yourself ownership of /usr/local/ using that line right there. I had to do this myself after using the ruby one-liner at the top of the official docs to install Homebrew. Worked like a charm for me. It ought to be the only time you'll ever need to sudo with Homebrew.

I'm not sure if the ruby one-liner does this. If it did, then something else on my system took control of /usr/local since.

Edit: I completely missed this, but @samvermette didn't (see replies to my answer): if you run this command above and have something installed via homebrew that requires special user permissions, like mysql, make sure to give those permissions back (as the above command gives recursive ownership to everything inside /usr/local to you ($USER). In the case of mysql, it's…

sudo chown -RL mysql:mysql /usr/local/mysql/data

link|improve this answer
5  
Please note: this command is going to remove ownership of /usr/local/mysql/data from the mysql user. In my case that prevented mysql from starting up. Fix that with: sudo chown -RL mysql:mysql /usr/local/mysql/data – samvermette Jun 22 '11 at 3:18
2  
I avoided the mysql issue by using sudo chown -R $USER /usr/local/Cellar as /usr/local/ already had the correct permissions for me – Parker Feb 15 at 23:38
1  
This should be the accepted answer, goddamn it. – GJTorikian Apr 15 at 7:08
Alas, users come and users go… perhaps someday Ibrahim will come back and mark it. Maybe. (Probably not.) – Ben Kreeger Apr 16 at 12:16
feedback

How did you install Homebrew? Their official installation instructions include running a ruby script. That should take care of the permission issues for you.

If you don't want to run a script, there is a section of that page called "Installing to /usr/local for Developers" that explains the change in permissions needed for the /usr/local directory.

link|improve this answer
i used a script and it installed but it still had problems updating. I migrated user data onto a new laptop. Had to do a few workarounds from github b/c the script didn't work at first. – Ibrahim Jan 26 '11 at 20:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.