Skip to content

Instantly share code, notes, and snippets.

@minrk
Created May 14, 2014 21:58
Show Gist options
  • Save minrk/47fc8c0d5c4a6aed4bb2 to your computer and use it in GitHub Desktop.
Save minrk/47fc8c0d5c4a6aed4bb2 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
# sudo for install may not be necessary, depending on permissions in /usr/local
curl -L -O http://download.zeromq.org/zeromq-4.0.4.tar.gz
tar -xzf zeromq-4.0.4.tar.gz
cd zeromq-4.0.4
./configure
make
sudo make install
cd ..
curl -L -O https://pypi.python.org/packages/source/p/pyzmq/pyzmq-14.3.0.tar.gz
tar -xzf pyzmq-14.3.0.tar.gz
cd pyzmq-14.3.0
python setup.py build
sudo python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment