我正试图在我的环境中第一次安装Mosca。但以下是安装的响应。我收到了这个错误。在我们的环境中使用node.js之后安装MOSCA之前有什么要求?
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:355:16)
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/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /usr/local/lib/node_modules/mosca/node_modules/ascoltatori/node_modules/zmq
gyp ERR! node -v v4.2.4
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
答案 0 :(得分:0)
尝试安装build-essentials。
即,在Debian或Ubuntu上输入
sudo apt-get install build-essentials
然后在那些gyp ERR之上!当你再次尝试npm安装时的消息,它应该说像... / lib / X.h这样的致命错误:Y / Y.h:没有这样的文件或目录。 然后你只需要谷歌库使用这些头文件和apt-get安装它们。
答案 1 :(得分:0)
我在AWS Ubuntu机器上设置mosca时遇到了类似的问题。我不得不安装zmq库 http://zeromq.org/intro:get-the-software
请注意,您还将安装libtool,pkg-config,build-essential,autoconf和automake。
zmq安装文档中有一个错误。我需要运行' sudo make install'而不是仅仅安装' make install'正如文件中所建议的那样。