nvm list
This command worked fine for me. It will list all the installed versions of node under nvm
Answer from castelinos on Stack OverflowVideos
nvm list
This command worked fine for me. It will list all the installed versions of node under nvm
This happens when you have installed node but not installed using nvm, you can install the versions again, by like
nvm install 12.14 where 12.14 is that particular version you wanna use.
and use it by nvm use 12.14.
I read somewhere that you can actually have those versions being managed by nvm itself, but I need to find it again, will update my answer when I find it.
nvm install 8.10.0 is for installing proposed node version locally.
In order to use it:
nvm use 8.10.0
Note that you need to run this command as administrator.
You can always set default Node.js version:
nvm alias default 8.10.0
Install
nvm install 8.10.0Use once per terminal
nvm use 8.10.0Set up as the default for all terminals
nvm alias default 8.10.0Set up Node.js version for your IDE
- For more information check nvm documentation
Hello gang, I am having issues using Node version manager on windows. I have checked my environmental variables, manually added paths via my bash file, and i used the powershell, command prompt, and git bash. NVM commands work fine but node -v and npm -v will not work at all. Incredibly frustrating as i was in the middle of working on AWS services so this is incredibly counter productive. Any advice?
I should add that i was using the latest version of node up until today without any issues. An application or project i was working on necessitated an older version of Node.js. The Windows support article https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows explains in few details additional processes i could take to resolve the issue so i have been relying on information found on the web. I can send photos of my environmental variables although i am very cautious uploading any information regarding my local machine via a subreddit about programmers learning. Unfortunately not all humans live for the betterment of the human race. If anyone has dealt with this problem. let me know a resource i can delve into or how you resolved the issue.