I have already installed Node specific version in my system.
Now i have installed NVM using below command.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
if I run nvm in terminal , its showing all NVM options user can try. ( NVM installation is Successful)
My doubt is it not taking up already installed node version on nvm ls
PFA
nvm ls
> -> system
iojs -> N/A (default)
node -> stable (-> N/A) (default)
unstable -> N/A (default)
Please let me know how NVM can detect already installed node version. If i install other node version with NVM , i may loose track of already installed node version as its not coming up in nvm ls
nvm install <current version>
– Deforest