npm node gyp失败是因为“node-gyp.js”跟“Node.js”版本不匹配,其解决办法:1、通过“npm cache clean -f”清除node缓存;2、通过“npm install -g n”安装n模块;3、通过“n v12.21.0”命令安装“node v12.21.0”版本即可。
本教程操作环境:Windows10系统、node v12.21.0版、Dell G3电脑。
npm node gyp失败怎么办?
npm install报node-gyp相关错误
我在构建一个vue项目时,报了node-gyp构建相关错误,错误信息如下
1 error generated.make: *** [Release/obj.target/binding/src/binding.o] Error 1gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2gyp ERR! stack at ChildProcess.onExit (/Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-gyp/lib/build.js:262:23)gyp ERR! stack at ChildProcess.emit (node:events:527:28)gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)gyp ERR! System Darwin 20.4.0gyp ERR! command "/usr/local/bin/node" "/Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="gyp ERR! cwd /Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-sassgyp ERR! node -v v16.15.1
登录后复制
经过各种尝试才发现
原因是node-gyp.js跟我的Node.js版本不匹配,我的Node版本太高了
经过尝试发现Node降级到 v12.21.0版本后,构建成功。
降级操作相关命令:
# 查看当前node版本node –v# 清除node缓存npm cache clean -f# 安装n模块npm install -g n# 安装v12.21.0版本n v12.21.0# 查看当前node版本node –v
登录后复制
推荐学习:《node.js视频教程》
以上就是npm node gyp失败怎么办的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2631768.html