Creating/Setting 系统上的 React Native 项目面临问题
Facing Issue in Creating/Setting up React Native Project on System
以下是我面临的错误。任何帮助将非常感激。如果我还需要其他任何东西,请告诉我。
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)
通常,windows在桌面访问方面有点害怕C:\Users\<user>\Desktop
。
鉴于它是异步滴答的错误,可能与文件访问相关,尝试在不受限制的地方创建一个新文件夹(可能是文档,或者 c:\tmp
)然后 运行 那里的命令
- WinKey + R
- 类型
cmd
- 列表项
- 运行 命令
cd c:\
- 运行 命令
mkdir tmp
- 运行命令
cd tmp
- 运行 你现有的命令
create-react-native-app MyReactNative
终于,它现在对我有用了。以下是适用于上述问题的解决方案。
你的ComSpec环境变量有误,替换为:
%SystemRoot%\system32\cmd.exe;C:\Windows\System32
具有以下内容:
%SystemRoot%\system32\cmd.exe
然后重新启动 cmd 并重试生成项目。
以下是我面临的错误。任何帮助将非常感激。如果我还需要其他任何东西,请告诉我。
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)
通常,windows在桌面访问方面有点害怕C:\Users\<user>\Desktop
。
鉴于它是异步滴答的错误,可能与文件访问相关,尝试在不受限制的地方创建一个新文件夹(可能是文档,或者 c:\tmp
)然后 运行 那里的命令
- WinKey + R
- 类型
cmd
- 列表项
- 运行 命令
cd c:\
- 运行 命令
mkdir tmp
- 运行命令
cd tmp
- 运行 你现有的命令
create-react-native-app MyReactNative
终于,它现在对我有用了。以下是适用于上述问题的解决方案。
你的ComSpec环境变量有误,替换为:
%SystemRoot%\system32\cmd.exe;C:\Windows\System32
具有以下内容:
%SystemRoot%\system32\cmd.exe
然后重新启动 cmd 并重试生成项目。