53

I'm learning laravel and follwing this tutorial,

But when I went try and install npm, is says bash: npm: command not found

enter image description here

Henke
  • 2,831
  • 2
  • 16
  • 26
Deo
  • 621
  • 1
  • 6
  • 15

9 Answers9

27

If you have already installed nodejs and still getting this error. npm: command not found..

run this

apt-get install -y npm
Black Mask
  • 273
  • 3
  • 3
14

I also come here for the same problem, The solution I found is to install npm and then restart the Visual Studio Code

Naimur Hasan
  • 320
  • 7
  • 12
7

in redhat base OS (tested in centos 7)

yum install nodejs npm -y

in debian base OS

apt-get install -y npm    
Omid Ahmadyani
  • 1,238
  • 11
  • 14
6

I know it's an old question. But it keeps showing in google first position and all it says it's "install node.js". For a newbie this is not obvious, so all you have to do is go to the node.js website and search for the command for your linux distribution version or any other operating system. Here is the link: https://nodejs.org/en/download/package-manager/

In this page you have to choose your operating system and you'll find your command. Then you just log into your console as a root (using putty for instance) and execute that command.

After that, you log as normal user and go again inside your laravel application folder and run again npm install command, and it should work. Hope it helps.

gallo2000sv
  • 113
  • 1
  • 2
  • 12
5

I am following the same tuturial and I had this issue and how I solved is just download the

8.11.4 LTS version

from this link then install it then the command worked just fine!

Community
  • 1
  • 1
2

The solution is simple.

After installing Node, you should restart your VScode and run npm install command.

Voontent
  • 619
  • 5
  • 7
2

If you already installed npm globally on your system, and you are still getting the above error message by using VSCode terminal. Just close your VSCode application and reopen again, that should resolve the issue.

an-apluss
  • 357
  • 3
  • 8
1

First You need to check the node version using terminal (not gitbash)

node --version

npm --version

if those exists, Restart your pc and check

Cheers !!

janadari ekanayaka
  • 2,120
  • 2
  • 9
  • 12
0

In my case it was entirely my fault (as usual) I was changing the system path under the environment variables, in Windows, and messed up the path for Node/NPM. So the solution is to either re-add the path for NPM, see this answer or the lazy option: re-install it which will re-add it for you.

Mirza Sisic
  • 2,335
  • 4
  • 25
  • 35