2

Im new to command line stuff and I was trying to install Homebrew in order to install gstreamer on my Mac. I was following instructions and got to the point where brew doctor gave me a list of errors about the things in /usr/local. After reading that OS X doesnt use that directory I rm -rf the directories in local. Since then brew doctor returns command not found and if I try to reinstall Brew the terminal just hangs.

$ /usr/bin/ruby -e "$(/usr/bin/curl -fksSL http://ow.ly/aAiPj"
> 

IS there anyway to fix this?

1 Answer 1

0

There is a missing closing parenthesis on your command.

The command should be:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
1
  • Ah! Thanks, that plus cleaning out /local and now Im ready to brew. Thanks.
    – epyonxero
    Commented Feb 7, 2014 at 3:26

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .