zeromq.node installation error Ubuntu 12.04: ' node-gyp rebuild'

ε祈祈猫儿з 提交于 2019-12-03 14:44:53
Mahesh chary

gyp bulid error removed libzmq dev and its dependencies and tried below steps..it worked for me

 $ sudo apt-get update
 $ sudo apt-get install build-essential
 $ sudo apt-get install libzmq-dev
 $ npm install zmq

I managed to solve this by following this tutorial for installing the python-client. After completing each of the steps I found I was then able to install the node.zeromq module through npm using:

$ npm install zmq

I'm guessing this is due to missing some of the required files. Most likely libzmq-dev.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!