1

I installed node through nvm-windows but the command 'node-v' does not exist, I did command 'nvm use 18.12.1', That tips is “Now using node v18.12.1”. It means i had installed successed ?

I expect node to install successfully.

bruce_lin
  • 11
  • 1
  • The command is not `node-v` it is `node` and you pass the argument `-v` to the command. So you type it like this: `node -v` – slebetman Jun 15 '23 at 12:37

1 Answers1

2

Just to check, did you try node-v? If yes, you miss the space.

The right command should be node -v or node --version.

Hoang Dao
  • 775
  • 5
  • 16
Saumus
  • 162
  • 8