I'm trying to install Homebrew on Mac OS X Lion according to these instructions which simply state to paste this in a terminal window: /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)". I did that, but after it tries to open up the /usr/local directory to be written by anybody, I get Permission denied errors for a bunch of directories and the install script quits:

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/Formula/...
/usr/local/Library/Homebrew/...

Press enter to continue
==> /usr/bin/sudo /bin/chmod o+w /usr/local
mkdir: /usr/local/Cellar: Permission denied
mkdir: /usr/local/etc: Permission denied
mkdir: /usr/local/include: Permission denied
mkdir: /usr/local/lib: Permission denied
mkdir: /usr/local/Library: Permission denied
mkdir: /usr/local/sbin: Permission denied
mkdir: /usr/local/share: Permission denied
mkdir: /usr/local/var: Permission denied
mkdir: /usr/local/.git: Permission denied
Failed during: /bin/mkdir /usr/local/Cellar /usr/local/etc /usr/local/include /usr/local/lib /usr/local/Library /usr/local/sbin /usr/local/share /usr/local/var /usr/local/.git
$

The /usr/local directory does get set with drwxr-xrwx permissions properly. Am I supposed to run this script with sudo? I'm afraid to because the instructions say "The script installs Homebrew to /usr/local so that you don’t need sudo when you brew install". I'd like that capability. Once I do get this working, do I keep the /usr/local directory writable by anyone?

link|improve this question

70% accept rate
off topic, man. – J-16 SDiZ Aug 4 '11 at 5:42
1  
a script error is off topic? from stackoverflow or for my tags? – at. Aug 4 '11 at 6:15
feedback

closed as off topic by Robert Harvey Sep 23 '11 at 5:28

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

up vote 2 down vote accepted

You need to run chmod 777 /usr/local.

I just installed Homebrew on my Lion box the other day and did not see this issue at all.

link|improve this answer
I pasted the entire install process... the instructions made no mention of chmoding anything and the script does its own chmod operations. You think I should chmod 777 /usr/local? – at. Aug 4 '11 at 6:13
chmod 777 /usr/local worked. I guess my user is part of the admin group that owns /usr/local and so the homebrew install script command of chmod o+w /usr/local doesn't apply. Do I leave it with g+w permissions? – at. Aug 4 '11 at 7:28
I would leave it as is if everything is working. I've never paid that much attention to what the brew install process does, but I doubt changing any changes it made would be a good thing ;) – mdominick Aug 6 '11 at 6:23
feedback

Homebrew wants it's prefix (/usr/local) to be owned by you.

my-laptop:~ johndoe$ whoami
johndoe
my-laptop:~ johndoe$ sudo chown johndoe /usr/local/bin
my-laptop:~ johndoe$ sudo chmod 0755 /usr/local/bin

The last line limits write permissions to you account.

link|improve this answer
1  
Personally I just installed under /opt/brew – jkj Aug 4 '11 at 5:48
2  
I should change ownership of /usr/local or /usr/local/bin? Strange why they made no mention of this critical requirement in the install instructions. Do I change it back after the install is done? – at. Aug 4 '11 at 6:14
feedback

I just struggled with the same problem, but instead of manually entering any commands, I used gist: 768518 to do the dirty stuff for me. Worked like a charm.

The aforementioned gist (aptly described as "Fix permissions on /usr/local for Homebrew") only fixes the permissions, i.e. it doesn't install Homebrew despite the fact it is a fork of the installation script.


†) other than the required $ chmod a+x fix_homebrew.rb and $ ./fix_homebrew.rb of course

link|improve this answer
feedback

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