英文:
I installed node through nvm-windows but the command 'node-v' does not exist
问题
我通过 nvm-windows 安装了 node,但命令 'node-v' 不存在,
我执行了命令 'nvm use 18.12.1',提示是 “Now using node v18.12.1”。这是否意味着安装成功了?
我希望能够成功安装 node。
英文:
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.
答案1
得分: 2
Did you try node-v? If yes, you miss the space.
The right command should be node -v
or node --version
.
英文:
Just to check, did you try node-v? If yes, you miss the space.
The right command should be node -v
or node --version
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论