安装依赖库报如下异常
bash
[2/4] Fetching packages...
error marked@11.1.0: The engine "node" is incompatible with this module. Expected version ">= 18". Got "16.14.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
手动右键删除 node_modules
文件夹,清空了 npm
缓存:
bash
npm cache clean --force
发现还是不行。
后来在网上找到了解决方案:忽略错误。
输入命令:
bash
yarn config set ignore-engines true
再重新安装依赖,运行项目就可以了