本文主要是介绍芋道源码ruoyi-vue-pro项目前端yarn下载报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装了node最新的版本20.10.0,结果yarn下载依赖报错。
D:\code\IdeaProject\ruoyi-vue-pro\yudao-ui\yudao-ui-admin-vue2-master>yarn -install
error @achrinza/node-ipc@9.2.2: The engine "node" is incompatible with this module. Expected version "8 || 10 || 12 || 14 || 16 || 17". Got "20.10.0"
error Found incompatible module.
版本不兼容那就调整版本?太麻烦,执行以下命令
yarn config set ignore-engines true
是用于修复node版本不兼容的命令配置
本质上是忽略引擎版本检查
执行后的结果
D:\code\IdeaProject\ruoyi-vue-pro\yudao-ui\yudao-ui-admin-vue2-master>yarn config set ignore-engines true
yarn config v1.22.21
success Set "ignore-engines" to "true".
Done in 0.07s.
再执行yarn -install即可
这篇关于芋道源码ruoyi-vue-pro项目前端yarn下载报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!