Skip to content

Instantly share code, notes, and snippets.

@nwiizo
Created September 27, 2017 07:05
Show Gist options
  • Save nwiizo/ef6f2ed242d2d922c4772957d0309ea4 to your computer and use it in GitHub Desktop.
Save nwiizo/ef6f2ed242d2d922c4772957d0309ea4 to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
wget https://github.com/zeromq/zeromq4-1/releases/download/v4.1.5/zeromq-4.1.5.tar.gz
tar zxvf zeromq-4.1.5.tar.gz
cd zeromq-4.1.5
#install dependency
apt-get update && \
apt-get install -y libtool pkg-config build-essential autoconf automake uuid-dev
# make
./autogen.sh && ./configure && make
make check && make install && ldconfig
#check installed
ldconfig -p | grep zmq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment