Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a good install of

Node@v0.8.14 and NPM@1.1.65 on OS X 10.8.2 for local development.

Everything works as expected except for packages that I try to install with the -g flag for global, like grunt or forever, aren't found as terminal commands.

I have tried adding some paths but nothing's worked so far...

Here's my standard echo $PATH

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/:/usr/local/bin:/usr/local/share:/usr/local/share/npm:/usr/local/share/npm/lib/node_modules/:.npm

Thanks for the help!

share|improve this question
do you get any errors in the terminal? did you try sudo npm install ... ? – zeMirco Nov 26 '12 at 22:33
try cd /usr/local/bin; ls do you see your installed node_modules here? – Stephan Bönnemann Nov 26 '12 at 23:08
I am having the same issue. I have node v0.8.12 on Mountain Lion. Installing express globally. 'express' command is not found. Perhaps the install paths have changed in a recent npm version? – Alex B Dec 5 '12 at 10:11
To fix I added express bin folder to the $PATH variable in the /etc/launchd.conf (you may have to create this file). Might just be a workaround. See overwatering.org/blog/2012/08/setting-path-osx-mountain-lion for help. – Alex B Dec 5 '12 at 10:48

2 Answers

I had this same issue - I resolved it by installing n globally

npm install -g n

Worked for me

share|improve this answer

I got this problem as well. You need to check your npm prefix, change it to /usr/local if it's not. Check my answer here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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