Home

Published

- 1 min read

use nvm to install latest node

img of use nvm to install latest node

The solution for this is noted below

use nvm to install latest node

Solution

   # lists all versions
nvm ls-remote

# installs the version you want (in this case version 14.0.0)
nvm install v14.0.0

# use the version that you installed as the default
nvm use v14.0.0

Try other methods by searching on the site. That is if this doesn’t work