here is a screenshot of the error message shown. I am using a Windows 10 machine and the node version installed is 14.
Asked
Active
Viewed 152 times
0
-
It seems node is not installed on your system. Can you paste the o/p of node -v? – Apoorva Chikara Feb 24 '21 at 07:21
-
The error means that the program `node` is not in your search path. – Allan Wind Feb 24 '21 at 07:21
-
node -v v14.15.4 – Krishnna Sarrdah Feb 24 '21 at 07:31
1 Answers
1
The error message means that node
is either not installed or not in your search path ($PATH
).

Allan Wind
- 23,068
- 5
- 28
- 38
-
-
What OS? On Debian/Ubuntu it would be `apt install nodejs` as root (possible via sudo). See also https://nodejs.dev/learn/how-to-install-nodejs – Allan Wind Feb 24 '21 at 07:34
-
-
Yep, so the link I gave you has a download link https://nodejs.org/en/download/ with a Windows installer. – Allan Wind Feb 24 '21 at 07:41
-
I have installed node and checked the path in my env variables, it's there. But I'm getting the same error again – Krishnna Sarrdah Feb 24 '21 at 07:56
-
-
this link will help you : https://stackoverflow.com/questions/27344045/installing-node-js-and-npm-on-windows-10 – Apoorva Chikara Feb 24 '21 at 08:03