Skip to content

Instantly share code, notes, and snippets.

@cyrex562
Created March 20, 2018 13:53
Show Gist options
  • Select an option

  • Save cyrex562/48c8f202e90ee862116686a0820ae83d to your computer and use it in GitHub Desktop.

Select an option

Save cyrex562/48c8f202e90ee862116686a0820ae83d to your computer and use it in GitHub Desktop.
libzmq install ubuntu
  1. Install pre-requisites via APT
sudo apt-get install libtool pkg-config build-essential autoconf automake
sudo apt-get install libzmq-dev
  1. Install libsodium from source
git clone git://github.com/jedisct1/libsodium.git
cd libsodium
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig
  1. Install zeromq from source
wget https://github.com/zeromq/libzmq/releases/download/v4.2.3/zeromq-4.2.3.tar.gz
tar -xvf zeromq-4.2.3.tar.gz
cd zeromq-4.2.3
./autogen.sh
./configure && make check
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment