60

I installed node and npm using the instructions provided here

I was able to use node successfully. However, as I attempt to install the "Formidable" node module, I get the following error:

$npm install formidable
bash: /usr/local/bin/npm: /usr/local/bin/node: bad interpreter: No such file or directory

When I do a which npm I get the following output:

$which npm
/usr/local/bin/npm

I have no clue on what is wrong with npm here - any idea on how I can fix this?

Jorge Castro
  • 73,717
user109187
  • 1,651

4 Answers4

95

Taking @gertvdijk hint, I uninstalled NPM using the script:

rm -rf /usr/local/{lib/node{,/.npm,_modules},bin,share/man}/npm*

(which can be found here)

Even after performing the above, I got another error:

$ npm install formidable  
bash: /usr/local/bin/npm: No such file or directory

So, I ran hash -r in the terminal (as per the instructions found under NPM Won't Run After Upgrade) and voila - it worked. NPM now works!

user109187
  • 1,651
11

step 1: run npm -v o/p : Error: bash: /usr/local/bin/npm: No such file or directory

step 2: run which npm o/p: /usr/bin/npm

step 3: run hash -r then run npm -v o/p : 3.5.2

11

Ubuntu and some Linux distributions install node's interpreter as /usr/bin/nodejs, and not /usr/local/bin/node.

You can solve this issue installing the nodejs-legacy package which creates a symlink from /usr/bin/nodejs to /usr/bin/node.

Solution:

sudo apt-get install nodejs-legacy

References: nodejs-legacy package

jkt123
  • 3,600
Pac
  • 111
2

It appears that you've installed another Node version from source some time earlier. This is indicated by the /usr/local/bin path where it appears to be installed now.

  1. Uninstall the one you installed from source. See the instructions that got with the source on how to do so. There's no single way on how to uninstall software scripts installed which don't work with your system's package management.
  2. Install the packages with are listed in the instructions you linked to in your question.
  3. Verify that which npm now lists /usr/bin as installation path.

In general you should never have to install packages from source. And if you do, please be aware of the consequences as you're overriding the package management here an it will get confused by it.

gertvdijk
  • 69,427