Visual studio 代码无法识别 NPM
Visual studio code not recognising NPM
我想制作 web 3.0 网站。我用 Vite 来做(根据教程)。但是 Visual studio 代码无法识别 npm 命令(在控制台中)。
我已经安装了node js,并将其写入路径。 Cmd 正在识别 npm,它也给了我版本。
您知道问题出在哪里吗?
我的代码:
PS C:\Users1\Desktop\Web 3.0\client> npm init vite@latest
npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ npm init vite@latest
+ ~~~
+ CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Vite 站点 - https://vitejs.dev
好的,我解决了这个问题。我不知道为什么,但是当我使用命令 npm -v 和 node -v 在我的 visual studio 代码控制台中它似乎开始工作了。不知道为什么,不知道怎么办。它刚刚开始工作。
我想制作 web 3.0 网站。我用 Vite 来做(根据教程)。但是 Visual studio 代码无法识别 npm 命令(在控制台中)。
我已经安装了node js,并将其写入路径。 Cmd 正在识别 npm,它也给了我版本。
您知道问题出在哪里吗?
我的代码:
PS C:\Users1\Desktop\Web 3.0\client> npm init vite@latest
npm : The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ npm init vite@latest
+ ~~~
+ CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Vite 站点 - https://vitejs.dev
好的,我解决了这个问题。我不知道为什么,但是当我使用命令 npm -v 和 node -v 在我的 visual studio 代码控制台中它似乎开始工作了。不知道为什么,不知道怎么办。它刚刚开始工作。