How to install ZeroMQ on Ubuntu14.04

时间:2023-03-09 08:51:18
How to install ZeroMQ on Ubuntu14.04

Prepare:

sudo apt-get install libtool autoconf automake uuid-dev
sudo apt-get install python-dev
sudo apt-get install g++
sudo apt-get install python-setuptools

Check Stable Release:

http://zeromq.org/intro:get-the-software

How to install ZeroMQ on Ubuntu14.04

Download:

wget http://download.zeromq.org/zeromq-4.0.5.tar.gz

How to install ZeroMQ on Ubuntu14.04

Unpack:

tar -zxvf zeromq-4.0..tar.gz

How to install ZeroMQ on Ubuntu14.04

Install:

./configure
make

How to install ZeroMQ on Ubuntu14.04

make install

How to install ZeroMQ on Ubuntu14.04

ldconfig

How to install ZeroMQ on Ubuntu14.04

Install API for python:

easy_install pyzmq

How to install ZeroMQ on Ubuntu14.04

Test:

python -c "import zmq"

How to install ZeroMQ on Ubuntu14.04

Done:

Thanks !!