yarn install报错,这样解决

一、问题 

error [email protected]: The engine "node" is incompatible with this module. Expected version ">=18". Got "16.20.2"

error Found incompatible module.

一开始我以为是node版本的问题,于是下载20.14.0版本的node(nvm install 20.14.0)并切换成更高版本的(nvm use 20.14.0)可是还报错。按提示换成其他任何版本的node都出错。

error @achrinza/[email protected]: The engine "node" is incompatible with this module. Expected version "8 || 10 || 12 || 14 || 16 || 17". Got "20.14.0"
error Found incompatible module.

 更多nvm命令可参考nvm的常用命令 


二、解决方案

如果你也遇到同样的问题,可以参考我的解决办法:

运行命令: 在终端中执行

yarn config set ignore-engines true

效果:

  • 这将修改 Yarn 的全局配置,使其在未来的安装过程中忽略 engines 版本要求。
  • 你可以在项目中继续使用不兼容的依赖。

注意事项:

  • 风险: 忽略 engines 的设置可能会导致运行时错误或不稳定的行为,因为某些包可能确实不支持你当前的 Node.js 版本。
  • 恢复设置: 如果你想恢复默认行为,可以使用以下命令:
yarn config delete ignore-engines

猜你喜欢

转载自blog.csdn.net/qq_46094169/article/details/143432126