在我的项目中进行npm时遇到错误

时间:2015-09-22 01:59:04

标签: node.js

我正在进行npm安装并遇到这些错误。无法弄清楚究竟发生了什么,或者我真正想念的是什么。我尝试手动安装node-gyp但是当我尝试运行gulp时,我得到"命令未找到"。完全令人沮丧

16 errors generated.
make: *** [Release/obj.target/lwip_decoder/src/decoder/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:270: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 Darwin 14.5.0
gyp ERR! command "/usr/local/Cellar/node/4.1.0/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/soum/Documents/movado/preprocessed/node_modules/css-sprite/node_modules/lwip
gyp ERR! node -v v4.1.0
gyp ERR! node-gyp -v v3.0.1
gyp ERR! not ok 
npm ERR! Darwin 14.5.0
npm ERR! argv "/usr/local/Cellar/node/4.1.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v4.1.0
npm ERR! npm  v2.14.4
npm ERR! code ELIFECYCLE

npm ERR! lwip@0.0.6 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the lwip@0.0.6 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the lwip package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls lwip
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/soum/Documents/movado/preprocessed/npm-debug.log

3 个答案:

答案 0 :(得分:3)

这是一个known issue,其中包含影响所有平台的gyp / node-gyp。

不再主动支持node-gyp,因此它不适用于较新版本的Node.js.您需要卸载4.1.0,因此如果您使用的是Homebrew:

sudo brew uninstall node.js

然后安装版本0.12.7,这对我有用(我也在Mac OSX上 - 达尔文14.5.0)。我从nodejs.org下载了pkg,安装了0.12.7。

答案 1 :(得分:0)

lwip包需要在安装时构建,看起来你没有这个包中的一个(或多个)(gcc,g ++,make),所以尝试运行sudo apt-get install gcc && sudo apt-get install g++ && sudo apt-get install make然后再试一次

答案 2 :(得分:0)

我通过设置npm指向python v2.7的首选版本,按照https://github.com/nodejs/node-gyp#installation的说明解决了“ node-gyp rebuild ”问题。我在使用节点v4.2.4和node-gyp v3.5.0在Ubuntu 14.0.4上安装 lwip 时遇到了这个问题。解决了它:

$ whereis python
    python: /usr/bin/python /usr/bin/python3.4m /usr/bin/python2.7 
$ npm config set python /usr/bin/python2.7 
$ npm install lwip