NVM 'You need to run "nvm install N/A"'

By Tech Writer How to
If you've changed node versions with NVM you might experience this error message in the console. N/A: version "N/A" is not yet installed. You need to run "nvm install N/A" to install it before using

If you've changed node versions with NVM you might experience this error message in the console.

N/A: version "N/A" is not yet installed.

You need to run "nvm install N/A" to install it before using it.
To solve this issue you simply need to set a new default. For example, you're using the v8 branch. nvm alias default 8 Otherwise, if you want to always have nvm set the latest version of node as the default you have use the following command. nvm alias default node   References: https://github.com/nvm-sh/nvm/issues/1356