错误:未找到:make

时间:2013-11-21 15:58:52

标签: node.js npm node-gyp

我无法安装任何需要node-gyp的软件包。错误消息就像这样

$ 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

> node-protobuf@1.0.8 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! node-protobuf@1.0.8 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-protobuf@1.0.8 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
  • Make:GNU Make 3.81安装在/usr/bin/make(来自官方Debian软件包)
  • Distro:Debian 6.0.8
  • Arch:amd64
  • 构建必备包:已安装
  • 节点:从源手动构建
  • 安装非gyp包:正常工作

1 个答案:

答案 0 :(得分:4)

我发现我在/usr/bin/make上设置了0754权限,which中的错误因为用户的主要组而跳过该文件与{{1}不同}的。我在node-which。

中提交了a bug