Reputation: 4736
I'm trying to install Sass on my OS X 10.8.4 machine.
When I enter "sudo gem install sass" I get the following output:
Successfully installed sass-3.2.9
1 gem installed
But afterwards, when I enter "sass -v", I get:
-bash: sass: command not found
My path file is like the following:
#homebrew should always take presedence
/usr/local/bin
#the default stack
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin
I also tried the solution here which unfortunately didn't help. It added the following line to my .bash_profile.
export PATH=#homebrew should always take presedence:/usr/local/bin:#the default stack:/usr/bin:/bin:/usr/sbin:/sbin:/bin
Any thoughts...
Upvotes: 0
Views: 421
Reputation: 298512
Your comments are breaking the PATH
. Just do this instead:
export PATH=/usr/local/bin:$PATH
Upvotes: 1