npm install报node-gyp相关错误

我在构建一个vue项目时,报了node-gyp构建相关错误,错误信息如下

1 error generated.
make: *** [Release/obj.target/binding/src/binding.o] Error 1
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp 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.0
gyp 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-sass
gyp 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

降级报错问题

若遇到下面错误信息
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to

请参考该文章解决

猜你喜欢

转载自blog.csdn.net/xingxincsdn/article/details/125724901