So I'm trying to clear out older versions of node.js.
I start with:
$ nvm ls
v0.10.30
v4.2.3
-> v6.6.0
system
I don't want the older versions, so I then do:
$ nvm uninstall 4.2.3
Uninstalled node v4.2.3
I then verify that it's done what I wanted, but it gives the same list of installed versions as before:
$ nvm ls
v0.10.30
v4.2.3
-> v6.6.0
system
Specifically, v4.2.3
is still there.
Any ideas what I might be doing wrong? Any other way to force the uninstall? I'm using the Cloud 9 IDE.