nanopop@2.4.0 engine "node" is incompatible with this module. Expected version "^20". Got "14.16.0" error Found incompatible module.
过程: 尝试1:安装node 20版本, 但是还是不行, 会报Expected version “8||10||12||14||16”
最终解决:(忽略引擎版本检查) yarn install --ignore-engines
解决完问题1, 可以安装包了, 但是安到node-sass又报错了, 有2个报错:
"node-sass: Command failed...... "
"gyp verb check python checking for Python executable "python2" in the PATH"
解决方案一(安装python2):
// 安装
npm install -g node-gyp
// // 配置
npm config set python python2.7
npm config set msvs_version 2017
解决方案二(使用淘宝镜像安装node-sass):
查看现在镜像配置:
// npm命令
npm config get registry
// yarn命令
yarn config get registry
修改为淘宝镜像
// npm命令
npm config set registry http://registry.npm.taobao.org/
// yarn命令
yarn config set registry http://registry.npm.taobao.org/
安装node-sass
yarn add node-sass
解决方案三(使用dart-sass替代):
// yarn
yarn add node-sass@yarn:dart-sass -D
// npm
npm install node-sass@npm:dart-sass -D
如果还是装不上再加上–ignore-engines
yarn add node-sass --ignore-engines