npm install zmq在node-gyp rebuild中给出错误

时间:2013-12-30 21:32:42

标签: node.js ubuntu zeromq

我真的被这个问题困住了,我的开发人员很多,谷歌搜索很多但是混淆了什么是解决方案,我相信我会在这个论坛得到帮助。

我在ubuntu 13.04上 节点 - 0.11.10-pre zmq已通过以下标准流程安装: http://zeromq.org/intro:get-the-software python - 2.7

zishan@news01:~$ sudo npm install zmq
npm http GET https://registry.npmjs.org/zmq
npm http 304 https://registry.npmjs.org/zmq
npm http GET https://registry.npmjs.org/nan
npm http GET https://registry.npmjs.org/bindings
npm http GET https://registry.npmjs.org/set-immediate
npm http 304 https://registry.npmjs.org/nan
npm http 304 https://registry.npmjs.org/bindings
npm http 304 https://registry.npmjs.org/set-immediate

zmq@2.5.1 install /home/zishan/node_modules/zmq
node-gyp rebuild
gyp ERR! configure error
gyp ERR! stack Error: "pre" versions of node cannot be installed, use the --nodedir flag instead
gyp ERR! stack at install (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/install.js:65:16)
gyp ERR! stack at Object.self.commands.(anonymous function) as install
gyp ERR! stack at getNodeDir (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:150:20)
gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:93:9
gyp ERR! stack at ChildProcess.exithandler (child_process.js:694:7)
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:104:17)
gyp ERR! stack at maybeClose (child_process.js:808:16)
gyp ERR! stack at Process.ChildProcess.handle.onexit (childprocess.js:875:5)
gyp ERR! System Linux 3.8.0-19-generic
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/zishan/node_modules/zmq
gyp ERR! node -v v0.11.10-pre
gyp ERR! node-gyp -v v0.12.1
gyp ERR! not ok
npm ERR! zmq@2.5.1 install: node-gyp rebuild
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the zmq@2.5.1 install script.
npm ERR! This is most likely a problem with the zmq 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 zmq
npm ERR! There is likely additional logging output above.

npm ERR! System Linux 3.8.0-19-generic
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "zmq"
npm ERR! cwd /home/zishan
npm ERR! node -v v0.11.10-pre
npm ERR! npm -v 1.3.21
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /home/zishan/npm-debug.log
npm ERR! not ok code 0

2 个答案:

答案 0 :(得分:2)

好的,我用下面的链接想出来了

首先,我使用下面的方法完全删除了nodejs。 How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)

然后,我安装了Node版本管理器来安装节点0.10(这是稳定版本) https://github.com/creationix/nvm

一切都像魅力和zmq一样安装,没有任何问题。

我想早些时候我正在使用节点0.11.xx-pre版本,该版本处于测试版并且与node-gyp存在问题,节点0.10正常运行。

希望这会帮助别人,因为我花了很长时间才弄明白。

答案 1 :(得分:0)

我认为您的Node版本太高,因此不兼容。读:

... gyp ERR! node -v v0.11.10-pre gyp ERR! node-gyp -v v0.12.1 gyp ERR! not ok ...

如果你降级Node并重试,你应该好好去。请注意,将Xcode路径放在正确的位置非常重要。使用sudo xcode-select -switch /Applications/Xcode.app

还可以使用brew --config来确保其他内容有序。

相关问题