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?