温馨提示:本文翻译自stackoverflow.com,查看原文请点击:node.js - Node 10
node-gyp node.js

node.js - 节点10

发布于 2020-03-27 11:02:28

我最近升级到了节点10,运行时npm install出现以下错误:

make: *** [Release/obj.target/memwatch/src/init.o] Error 1
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:262:23)
gyp ERR! stack     at ChildProcess.emit (events.js:182:13)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:240:12)
gyp ERR! System Darwin 18.2.0
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/david/Documents/gitlab/project/node_modules/memwatch-next
gyp ERR! node -v v10.15.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok 

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! memwatch-next@0.3.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the memwatch-next@0.3.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

在“ macOS Mojave”上工作时,我与Node10一起在同一项目上工作,没有任何问题。请告知可能导致该错误的原因是什么?

查看更多

查看更多

提问者
David Faizulaev
被浏览
210
David Faizulaev 2019-01-21 17:03

通过将npm更新到最新版本并运行npm rebuild解决了该问题。