next.js 尝试在VS代码上安装下一个js,但显示npm无法识别错误

mbskvtky  于 2023-02-08  发布在  其他
关注(0)|答案(3)|浏览(151)

我尝试在VS代码中安装next js,当我在VS的powershell终端中键入“npx create-next-app”时,它显示错误,并显示:
The term 'npx' 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.
我已经安装了节点10.13,就像接下来的文档要求我...
这是一张照片

voase2hg

voase2hg1#

这意味着您的机器没有安装npx,请先检查或更新您的npm或已安装的npx。
使用此命令检查是否已安装npx --version如果未安装,则更新节点和npm版本
在附件中,您没有传递项目名称,因为您应该提供项目名称以及npx create-next-app myapp

af7jpaap

af7jpaap2#

安装后,请尝试

npx create-next-app [name here]

cd my-project
ars1skjm

ars1skjm3#

安装node.js,帮我安装.然后检查版本. npx-v,然后安装它npx create-react-app my-app例如

相关问题