节点10 -在npm安装期间出现“node-gyp重建”错误

nx7onnlm  于 2022-12-18  发布在  Node.js
关注(0)|答案(7)|浏览(372)

我最近升级到了节点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工作,没有任何问题。请告知是什么导致了错误?

ldioqlga

ldioqlga1#

已通过将npm更新为最新版本并运行npm rebuild解决问题。

pdkcd3nj

pdkcd3nj2#

在不知道实际的node-gyp错误的情况下,请确保您已经为您的平台安装了node-gyp依赖项。

bqucvtff

bqucvtff3#

我遇到了同样的问题&通过删除yarn.lock文件&然后再次运行yarn install解决了这个问题

t3psigkw

t3psigkw4#

我觉得删除这个目录比较好:

rm -rf ~/.node-gyp/
rm -r node_modules/.bin/;
rm -r build/

你可以测试

npm install -g node-gyp

以及

npm install -g node-pre-gyp


最后:

npm install <your module>
q3qa4bjr

q3qa4bjr5#

使用NVM来管理节点。这真的很有帮助。我也有同样的错误,但是用最新的Node LTS版本解决了它。这可以用NVM通过一个命令轻松完成。

nvm install --lts
ibrsph3r

ibrsph3r6#

我也遇到了同样的问题。首先我删除了package.json并运行了npm install,但没有任何帮助。只有返回到以前的稳定节点版本才有帮助。(nvm非常有用)

jc3wubiy

jc3wubiy7#

我建议如下:
1.删除节点模块文件夹

  1. npm install --force
  2. npm update -g npm --force
    1.如果在Windows上:npm -g install --production windows-build-tools
    1.运行Node.js文件
    源代码GitHub

相关问题