Tuesday, November 6, 2012

Installing ZeroMQ to Ubuntu Lucid

install c++ compiler etc...:
sudo apt-get install  build-essential libtool autoconf automake uuid-dev e2fsprogs

install zeromq using these hints: http://johanharjono.com/archives/633 :
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/zeromq
sudo add-apt-repository ppa:chris-lea/libpgm
sudo apt-get update
sudo apt-get install libzmq1
sudo apt-get install libzmq-dev
sudo apt-get install libpgm-5.1-0
pip install pyzmq
 
git clone git://github.com/zeromq/libzmq.git
cd libzmq
./autogen.sh && ./configure && make && sudo make install && echo ":: ALL OK ::"
sudo cp src/.libs/libzmq.so /usr/local/lib
sudo ldconfig -v
ls -al /usr/local/lib/libzmq.*
Ref: https://github.com/mslinn/zeromq-demo

LinkWithin

Related Posts Plugin for WordPress, Blogger...