简体   繁体   中英

The term 'node' is not recognized... In Powershell

I have been trying to resolve this issue for the whole day.

When I run node -v or npm install in cmd prompt, it works absolutely fine. But when I run the same commands in Powershell, it gives the following error:s

PS C:\Users\Anubhav.Trivedi> node -v
The term 'node' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli
ng of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:5
+ node <<<<  -v
    + CategoryInfo          : ObjectNotFound: (node:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

I tried uninstalling node js and reinstalling it. Added node js path C:\\Program Files (x86)\\nodejs\\ to enviroment variables (system variables). Restarting computer. But nothing seems to work. Kindly let me know, what am I missing here.

These issues cannot be installed from the Package Manager console, so I had to browse lot of things to fix the issues and finally I got the solution.

Maybe we followed these scenarios

  • Missing Node.js software

  • Wrongly updated Windows environment path

  • Installed in the wrong path

  • Old version of Node.js software

You can download the latest Node.js software here.

Update Path

After installation, automatically create nodejs folder in this path “C:\\Program Files (x86)” or “C:\\Program Files “.

Open Control Panel -> User Accounts -> Change my environmental variable and verify the path Variable value “C:\\Program Files (x86)\\nodejs” or “C:\\Program Files \\nodejs “.

new => user = path => value = C:\\Program Files (x86)\\nodejs and after apply that.

and close Editor and restart it. it will work correctly.

note :- enter your path instead of copy of this path.

As dan-gph mentioned check the Path in environment variable using script $env:path -split ';' | Select-String nodejs $env:path -split ';' | Select-String nodejs $env:path -split ';' | Select-String nodejs and once you update the Path in environment variable, make sure to restart powershell and also restart explorer.exe . This would resolve the issue.

If you still face issues, check which nodejs you have installed (32bit or 64bit). Install 32 bit only as powershell or cmd are 32bit programs

open control panel then--

   user accounts
         |
   user accounts
         |
  change my environment variables
         |
        new 
         |
  (In variable name use)--Path
         |
  (In variable value use)C:\Program Files\nodejs
         |
        ok 

After that just restart you terminal

chances are that you messed up with your system path, if it's the case, a very straight forward solution will be re-installing node and npm but don't forget to close and re-open powershell/cmd

Note: i thought that restarting computer has no effect on path but in an accident someone just deplug my laptop from power and after i turned it on everything was repaired and OK!

重新安装/修复应用程序并关闭 vs code powershell

If you installed NodeJs recently after opening the IDE like Visual Studio Code or any other IDE that includes the terminal you are trying. then try this.

  1. Restart the IDE, If you installed NodeJs recently after opening the IDE like Visual Studio Code or any other IDE that includes the terminal you are trying.
  2. Restart the CommandLine if you installed NodeJs after you opened the CommandLine.

I hope it will be fixed most of the time by following these simple steps.

Happy Coding!

I've got the same error. Simply check below instructions. If all they are done. Just restart your computer. Then it will worked for me. I just restarted my computer.

  1. List item

  2. Missing Node.js software

  3. Wrongly updated Windows environment path

  4. Installed in the wrong path

1.find nodejs folder

  1. go to environment variable in windows

  2. edit path and add "find nodejs folder"

  3. Restart computer在此处输入图片说明

This issue corrected after updated my environment variable path i just copy the path from path value in user to path value in system check image attachment.

https://i.stack.imgur.com/11uCk.png

path change image below

Model for VSCode editor

C:\Program Files\nodejs
C:\Program Files\nodejs\node_modules\npm\bin
  1. Search environment variable.
  2. Add the above paths into the Environment variables (both user variable path and system variable path).
  3. Restart VSCode.
  4. Open a new terminal in VSCode
  5. run node --version output should equal v16.13.0

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM