Npm 安装在 node-gyp 重建上失败
Npm Install Failing on node-gyp rebuild
这似乎是一个很常见的问题,但是 none 我研究过的解决方案已经为我解决了。
我是 运行ning Ubuntu 16.04,Node 4.2.6,NPM 版本 3.5.2。我怀疑我的应用程序中有一个不再适用于这些版本的依赖项,但我不确定如何快速识别它。
当我 运行 在我的应用程序上安装 npm 时,我得到以下信息:
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/node-gyp/lib/build.js:276:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Linux 4.4.0-28-generic
gyp ERR! command "/usr/bin/nodejs" "/usr/local/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/gary/Work/ui-programmatic/node_modules/bufferutil
gyp ERR! node -v v4.2.6
gyp ERR! node-gyp -v v3.4.0
gyp ERR! not ok
npm WARN install:bufferutil@1.1.0 bufferutil@1.1.0 install: `node-gyp rebuild`
npm WARN install:bufferutil@1.1.0 Exit
我试过重新安装 node 和 npm。
我能够通过使用
来识别不兼容的依赖项
npm list
从应用目录中。这表明我使用不兼容版本的 bufferutil 有一个未满足的依赖项。
当我更新依赖到最新版本时,npm install 运行没有报错。希望这对某人有所帮助。
这似乎是一个很常见的问题,但是 none 我研究过的解决方案已经为我解决了。
我是 运行ning Ubuntu 16.04,Node 4.2.6,NPM 版本 3.5.2。我怀疑我的应用程序中有一个不再适用于这些版本的依赖项,但我不确定如何快速识别它。
当我 运行 在我的应用程序上安装 npm 时,我得到以下信息:
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/node-gyp/lib/build.js:276:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Linux 4.4.0-28-generic
gyp ERR! command "/usr/bin/nodejs" "/usr/local/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/gary/Work/ui-programmatic/node_modules/bufferutil
gyp ERR! node -v v4.2.6
gyp ERR! node-gyp -v v3.4.0
gyp ERR! not ok
npm WARN install:bufferutil@1.1.0 bufferutil@1.1.0 install: `node-gyp rebuild`
npm WARN install:bufferutil@1.1.0 Exit
我试过重新安装 node 和 npm。
我能够通过使用
来识别不兼容的依赖项npm list
从应用目录中。这表明我使用不兼容版本的 bufferutil 有一个未满足的依赖项。
当我更新依赖到最新版本时,npm install 运行没有报错。希望这对某人有所帮助。