Skip to content

Instantly share code, notes, and snippets.

@TJkrusinski
Last active December 16, 2015 06:28
Show Gist options
  • Save TJkrusinski/5391524 to your computer and use it in GitHub Desktop.
Save TJkrusinski/5391524 to your computer and use it in GitHub Desktop.
zmq install ubuntu @3.2.2
#!/bin/bash
echo 'Installing ZMQ'
curl http://download.zeromq.org/zeromq-3.2.2.tar.gz > z.tar.gz
tar -xvzf z.tar.gz
cd zeromq-3.2.2
apt-get -y install libtool autoconf automake uuid-dev
./configure
make
make install
ldconfig
echo 'Done installing ZMQ'
echo 'Cleaning up'
cd ..
rm -rf zeromq-3.2.2
rm z.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment