-
Notifications
You must be signed in to change notification settings - Fork 0
ZeroMQ Installation Instructions
Alan Yorinks edited this page Apr 14, 2017
·
6 revisions
Here are the steps necessary to build and install ZeroMQ.
- sudo apt-get update
- sudo apt-get upgrade
- cd
- sudo apt-get install libtool pkg-config build-essential autoconf automake
- mkdir build
- cd build/
- wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.12.tar.gz
- tar -zxvf libsodium-1.0.12.tar.gz
- cd libsodium-1.0.12
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- wget http://download.zeromq.org/zeromq-4.1.4.tar.gz
- tar -zxvf zeromq-4.1.4.tar.gz
- cd zeromq-4.1.4/
- ./configure
- make
- sudo make install
- sudo ldconfig
- reboot
- sudo pip3 install pyzmq
Copyright (C) 2016, Alan Yorinks, All rights reserved.