记录一次安装包报错

发布时间:2024年01月19日

问题1(node版本不兼容):

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

问题2 node-sass安装失败

解决完问题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
文章来源:https://blog.csdn.net/weixin_42174938/article/details/135697382
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。