我最近升级到了节点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工作,没有任何问题。请告知是什么导致了错误?
7条答案
按热度按时间ldioqlga1#
已通过将npm更新为最新版本并运行npm rebuild解决问题。
pdkcd3nj2#
在不知道实际的node-gyp错误的情况下,请确保您已经为您的平台安装了node-gyp依赖项。
bqucvtff3#
我遇到了同样的问题&通过删除yarn.lock文件&然后再次运行
yarn install
解决了这个问题t3psigkw4#
我觉得删除这个目录比较好:
你可以测试
以及
型
最后:
q3qa4bjr5#
使用
NVM
来管理节点。这真的很有帮助。我也有同样的错误,但是用最新的Node LTS版本解决了它。这可以用NVM通过一个命令轻松完成。ibrsph3r6#
我也遇到了同样的问题。首先我删除了package.json并运行了npm install,但没有任何帮助。只有返回到以前的稳定节点版本才有帮助。(nvm非常有用)
jc3wubiy7#
我建议如下:
1.删除节点模块文件夹
npm install --force
npm update -g npm --force
1.如果在Windows上:
npm -g install --production windows-build-tools
1.运行Node.js文件
源代码GitHub