Node.js 在我的项目中执行npm时出错

Node.js 在我的项目中执行npm时出错,node.js,Node.js,我正在进行npm安装并收到这些错误。我想不出到底发生了什么或者我到底错过了什么。我尝试手动安装节点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:

我正在进行npm安装并收到这些错误。我想不出到底发生了什么或者我到底错过了什么。我尝试手动安装节点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

lwip软件包需要建立在安装的基础上,看起来你没有一个(或多个)这样的软件包(gcc,g++,make),所以试着运行
sudo-apt-get-install-gcc&&sudo-apt-get-install-g++&sudo-apt-get-install-make
,然后再试一次这是一个影响所有平台的gyp/节点gyp

node gyp不再受积极支持,因此无法与较新版本的node.js一起使用。您需要卸载4.1.0,因此如果您使用的是自制软件:

sudo brew uninstall node.js
然后安装版本0.12.7,这对我很有用(我也在MacOSX-Darwin14.5.0上)。我通过从下载pkg安装了0.12.7。

我通过将npm设置为指向python v2.7的首选版本来解决“节点gyp重建”问题,方法是按照上的说明。我在Ubuntu 14.0.4上安装lwip时遇到了这个问题,节点为v4.2.4,节点为gyp v3.5.0。解决方法是:

$ 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

当我试着运行sudo sudo apt get install gccsorry时,我没有找到命令,我以为你在ubuntu上。我不知道如何在OS X上安装软件包,但我想你知道,所以你应该安装它们。这个答案(正确的答案)很难找到!!Thx:)我的天啊,谢谢。我花了几个小时才弄明白。如果有人在尝试使用sprity/sprity sass时遇到此问题:请标记答案,我需要分数提升,谢谢:)