Skip to content

ZeroMQ Installation Instructions

Alan Yorinks edited this page Apr 14, 2017 · 6 revisions

Here are the steps necessary to build and install ZeroMQ.

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. cd
  4. sudo apt-get install libtool pkg-config build-essential autoconf automake
  5. mkdir build
  6. cd build/
  7. wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.12.tar.gz
  8. tar -zxvf libsodium-1.0.12.tar.gz
  9. cd libsodium-1.0.12
  10. ./configure
  11. make
  12. sudo make install
  13. sudo ldconfig
  14. cd ..
  15. wget http://download.zeromq.org/zeromq-4.1.4.tar.gz
  16. tar -zxvf zeromq-4.1.4.tar.gz
  17. cd zeromq-4.1.4/
  18. ./configure
  19. make
  20. sudo make install
  21. sudo ldconfig
  22. reboot
  23. sudo pip3 install pyzmq