报这个错误一般都是node版本不匹配原因导致看错误提示,我是提示有包要依赖node > 16的版本安装完之后
1、清理npm缓存
npm cache clean -fnpm cache clean --force
2、删除node_modules包
npm install rimraf -g rimraf node_modules
3、在执行 npm install
就可以了