我正在尝试使用npx命令创建一个React应用,如下所示
> print(propsToMyPeeps$propsTo)
[[1]]
An object of class "Person"
Slot "name":
[1] "Jane Smith"
Slot "age":
[1] NA
[[2]]
An object of class "Person"
Slot "name":
[1] "John Smith"
Slot "age":
[1] NA
[[3]]
An object of class "Person"
Slot "name":
[1] "John Smith"
Slot "age":
[1] NA
[[4]]
An object of class "Person"
Slot "name":
[1] "Jane Smith"
Slot "age":
[1] NA
[[5]]
An object of class "Person"
Slot "name":
[1] "Jane Smith"
Slot "age":
[1] NA
但这给我一个错误的说法
npx create-react-app my-app
我搜索了该错误并偶然发现了一些答案,这些答案建议将npm路径添加到系统变量或将system 32路径添加到系统变量。
我的用户变量
'CALL "C:\Program Files\nodejs\\node.exe" "C:\Program Files\nodejs\\node_modules\npm\bin\npm-cli.js" prefix -g' is not recognized as an internal or external command,
operable program or batch file.
spawn C:\Windows\system32\cmd.exe;C:\xampp\php ENOENT
我的系统变量
C:\Program Files\nodejs\
C:\Program Files\nodejs\node_modules\npm
我对Node js不太熟悉,并且在理解互联网上可用的答案方面遇到困难。
有人可以用适当的答案解释情况吗?
答案 0 :(得分:0)
尝试以下命令来启动并运行npx:
- npm cache clean --force
- npm init
- npm install create-react-app
- npx create-react-app myapp