user13688715
user13688715

Reputation:

node doesnt run in intergreted terminal in vs code

I installed node js . it works in Powershell , cmd but not in vs code .

node : The term 'node' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the 
name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ node -v
+ ~~~~
    + CategoryInfo          : ObjectNotFound: (node:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

Upvotes: 0

Views: 209

Answers (1)

Sannat Bhasin
Sannat Bhasin

Reputation: 161

I had a similar issue when I installed node while vscode was already running.

Try reloading vscode. This issue on github gave me more clarity: https://github.com/Microsoft/vscode/issues/13671#issuecomment-255778379

Upvotes: 1

Related Questions