Installing ZeroMQ on Linux - MrYsLab/xideco GitHub Wiki
Here are the steps necessary to build and install ZeroMQ on Ubuntu, BeagleBone Black and Raspberry Pi.
- sudo apt-get update
- sudo apt-get upgrade
- sudo apt-get install python3.5-dev (not available for Raspberry Pi)
- 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.8.tar.gz
- tar -zxvf libsodium-1.0.8.tar.gz
- cd libsodium-1.0.8/
- ./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