web-dev-qa-db-ja.com

Node 10-npmインストール中の「node-gyp rebuild」エラー

最近Node 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! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

'macOS Mojave'に取り組み、Node10で同じプロジェクトに問題なく取り組みました。エラーの原因を教えてください。

4
David Faizulaev

私はこのディレクトリを削除する方が良いと思います:

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>

私も同じ問題を抱えていました。まず、package.jsonを削除してnpm installを実行しましたが、役に立ちません。以前の安定したノードバージョンへの復帰のみが私を助けました。 (nvmは非常に便利です)

0
tajczi