2013-11-21 48 views
4

我无法安装任何需要node-gyp的软件包。错误消息是这样的错误:找不到:make

 
$ npm install node-protobuf 
info trying registry request attempt 1 at 22:43:57 
http GET https://registry.npmjs.org/node-protobuf 
http 200 https://registry.npmjs.org/node-protobuf 
npm http GET https://registry.npmjs.org/node-protobuf/-/node-protobuf-1.0.8.tgz 
npm http 200 https://registry.npmjs.org/node-protobuf/-/node-protobuf-1.0.8.tgz 

> [email protected] install /home/whs/node_modules/node-protobuf 
> node-gyp rebuild 

gyp ERR! build error 
gyp ERR! stack Error: not found: make 
gyp ERR! stack  at F (/usr/local/lib/node_modules/npm/node_modules/which/which.js:43:28) 
gyp ERR! stack  at E (/usr/local/lib/node_modules/npm/node_modules/which/which.js:46:29) 
gyp ERR! stack  at /usr/local/lib/node_modules/npm/node_modules/which/which.js:57:16 
gyp ERR! stack  at Object.oncomplete (fs.js:107:15) 
gyp ERR! System Linux 2.6.32-5-amd64 
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" 
gyp ERR! cwd /home/whs/node_modules/node-protobuf 
gyp ERR! node -v v0.10.22 
gyp ERR! node-gyp -v v0.12.1 
gyp ERR! not ok 
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 most likely a problem with the node-protobuf 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 node-protobuf 
npm ERR! There is likely additional logging output above. 

npm ERR! System Linux 2.6.32-5-amd64 
npm ERR! command "node" "/usr/local/bin/npm" "install" "node-protobuf" 
npm ERR! cwd /home/whs/ 
npm ERR! node -v v0.10.22 
npm ERR! npm -v 1.3.15 
npm ERR! code ELIFECYCLE 
npm ERR! 
npm ERR! Additional logging details can be found in: 
npm ERR!  /home/whs/npm-debug.log 
npm ERR! not ok code 0 

我也试过protobuf包,并得到完全相同的结果。

大多数搜索结果表明,这个错误是从缺少make,但在我的情况下,我已经使安装。节点安装甚至可以在机器上从源手动构建。

附加信息:

  • 路径:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
  • 品牌:GNU使安装在/usr/bin/make(来自官方Debian软件包)
  • 发行3.81:Debian的6.0.8
  • 拱门:AMD64
  • 构建必备软件包:安装
  • 节点:从源手动构建
  • 安装非GYP包:正常工作

回答

4

我发现,我设置0754权限上/usr/bin/makewhich一个错误的文件跳过由于用户的主要组不一样的make的。我已经在node-which中提交了a bug

+0

谢谢!我想了解一个多小时 - 最后我知道我没有默认安装:D谢谢 –