我运行了
expo install
并收到以下错误
error @react-native/[email protected]: The engine "node" is incompatible with this module. Expected version ">=18". Got "16.18.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
yarnpkg exited with non-zero code: 1
我已经删除了
node_modules
并运行了npm install
仍然没有解决错误。
添加更多详细信息可以更轻松地解决问题,但从错误来看,它显示您的节点版本为 16.18.0,但该模块需要节点版本 18 或更高版本,请更新您的节点并重试。 如果您使用 nvm:
nvm install 18
nvm use 18
npm install
如果没有,请访问 Node.js 下载站点 并选择 v18.x.x(LTS),安装并重试。