Created
May 14, 2014 21:58
-
-
Save minrk/47fc8c0d5c4a6aed4bb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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