Installing zeromq on centos 7/6 and ubuntu 14.04/16.04 from the source code

Install zeromq in Ubuntu 14.04 and 1604

Let’s install zeromq from the source code. Go ahead and install the git and CMake. Then clone the zeromq GitHub repo and install.

  • apt-get install git
  • apt-get install cmake
  • git clone https://github.com/zeromq/libzmq
  • cd libzmq
  • mkdir cmake-build && cd cmake-build
  • cmake .. && make -j 4
  • make test && make install && sudo ldconfig

Venkatesh

Hi Guys, I am Venkatesh. I am a programmer and an Open Source enthusiast. I write about programming and technology on this blog.

You may also like...

1 Response

Leave a Reply