I've been using node .4x and npm, and decided to upgrade to .67. Oh boy.

I'm on Mac OSX--new to it.

When I type npm I get

-bash: /usr/bin/npm: No such file or directory

echo $PATH shows a lot of stuff...some redundancies.

/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/Users/me/.rvm/bin:/usr/local/bin:/usr/local/:/usr/local/bin:/usr/local/bin/npm:/usr/local/bin/:/usr/local:/usr/local/bin:/usr/local/

I've tried a number of different installations, and likely should clean it up, which I don't know how to do :)

Any insights?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 5 down vote accepted

If npm is no longer installed in /usr/bin/npm, then chances are good bash(1) has hashed the executable name. The hashing saves repeated searches of all directories in your PATH every time you execute common programs. Since programs almost never change directories, this is usually a great idea.

To test, run hash -r. This will cause bash(1) to forget all its mappings. (This is harmless -- it starts up with no mappings and grows them over time.) If I was right, your npm will execute the correct executable wherever it lives.

link|improve this answer
Don't delete, even if that doesn't help this user another coming from google or whatever could be helped by the alternate solution. I believe only solutions that are technically incorrect and couldn't ever have worked should be deleted. – Lepidosteus Jan 20 at 0:42
@lepidosteus: okay, fair enough. :) Thanks for the feedback. :) – sarnold Jan 20 at 0:44
omg I can't believe it. worked perfectly. I bow before thee...! – user508708 Jan 20 at 1:48
ok, now I'm simply happy :) thanks @sarnold – user508708 Jan 20 at 1:51
feedback

Your Answer

 
or
required, but never shown

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