其他分享
首页 > 其他分享> > 2022-07-26 初始化react-native项目时报错Error: Command failed: yarn add react-native --exact

2022-07-26 初始化react-native项目时报错Error: Command failed: yarn add react-native --exact

作者:互联网

前言:打算整个新的rn(react-native)项目来测试,故此 npx react-native init myapp ,没想到报了个错误,具体如下:

Error: Command failed: yarn add react-native --exact  // 错误:命令失败:纱线添加反应本机--精确

除此之外还有一行:

The engine "node" is incompatible with this module. Expected version ">=14". Got "12.18.2" // 引擎“节点”与此模块不兼容。预期版本“>=14”。获得“12.18.2”

意思就是,你现在开发环境下的node版本太低了,达不到要求,要求就是更新一下你的node。

而我去npm -v看了一下,果不其然,我的node版本居然只有6.14.8。

废话不多说,直接升级node。

标签:node,26,--,react,failed,add,native
来源: https://www.cnblogs.com/iuniko/p/16523109.html