以下是我面临的错误。任何帮助将非常感激。如果我还有其他需要,请告诉我。
C:\Users\manikthakur\Desktop>create-react-native-app MyReactNative
This command requires Expo CLI.
Do you want to install it globally [Y/n]? Y
Installing the package 'expo-cli'...
events.js:167
throw er; // Unhandled 'error' event
^
Error: spawn C:\Windows\system32\cmd.exe;C:\Windows\System32 ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:232:19)
at onErrorNT (internal/child_process.js:407:16)
at process._tickCallback (internal/process/next_tick.js:63:19)
Emitted 'error' event at:
at ChildProcess.cp.emit (C:\Users\manikthakur\AppData\Roaming\npm\node_modul
es\create-react-native-app\node_modules\cross-spawn\lib\enoent.js:40:29)
at Process.ChildProcess._handle.onexit (internal/child_process.js:238:12)
at onErrorNT (internal/child_process.js:407:16)
at process._tickCallback (internal/process/next_tick.js:63:19)
答案 0 :(得分:0)
通常,对于桌面访问C:\Users\<user>\Desktop
,Windows会有些害怕。
鉴于这是异步刻度上的错误,可能与文件访问有关,请尝试在不受限制的位置(例如文档或c:\tmp
)创建一个新文件夹,然后从那里运行命令< / p>
cmd
cd c:\
mkdir tmp
cd tmp
create-react-native-app MyReactNative
答案 1 :(得分:0)
最后,它现在对我有用。以下是解决上述问题的解决方案。
您的ComSpec环境变量错误,请替换:
%SystemRoot%\system32\cmd.exe;C:\Windows\System32
具有以下内容:
%SystemRoot%\system32\cmd.exe
然后重新启动您的 cmd ,然后重试以生成项目。