基本上,当我运行npx create-react-app
时,得到的输出结果
'npm' is not recognized as an internal or external command,
operable program or batch file.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...
'npm' is not recognized as an internal or external command,
operable program or batch file.
Aborting installation.
npm install --save --save-exact --loglevel error react react-dom react-scripts@0.9.x has failed.
Deleting generated file... package.json
Deleting myapp/ from C:\Users\dralc\Desktop\Projects\React Tutorials
Done.
此问题似乎仅在git bash而不是Powershell中发生。
我尝试卸载并重新安装节点,以及使用yarn创建react-app并获得相同的输出。我在这里想念什么?任何帮助将不胜感激。
编辑:我正在使用的npm版本为6.14.6
答案 0 :(得分:0)
您的系统中未安装任何节点,或者未将其添加到您的路径变量中。
运行命令node -v
,并验证它是否显示系统中安装的节点版本。