How Do I install ZeroMQ on a Ubuntu 14.04.4 x64 droplet ?
Tried installing git and cmake via apt-get and the followed http://zeromq.org/intro:get-the-software trying to install using cmake
I get the following error: CMake Error: The source directory “<directory>” does not appear to contain CMakeLists.txt.
If I’m going about the correctly, what should be my current directory when installing??
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
For zeromq 4.2.2 Ubuntu 16 here https://gist.github.com/katopz/8b766a5cb0ca96c816658e9407e83d00
kudos to person who has actually posted.
site ref: https://gist.github.com/cdjhlee/b8e3c927a01b0948b42d
Script:
#!/usr/bin/bash
############################################## #from http://zeromq.org/intro:get-the-software ##############################################
#get zeromq wget http://download.zeromq.org/zeromq-4.0.5.tar.gz
#unpack tarball package tar xvzf zeromq-4.0.5.tar.gz
#install dependency sudo apt-get update &&
sudo apt-get install -y libtool pkg-config build-essential autoconf automake uuid-dev
#in zeromq dir cd zeromq-4.0.5
#create make file ./configure
#build and install(root permission only) sudo make install
#install zeromq driver on linux sudo ldconfig
#check installed ldconfig -p | grep zmq ############################################################ #libzmq.so.4 (libc6,x86-64) => /usr/local/lib/libzmq.so.4 #libzmq.so (libc6,x86-64) => /usr/local/lib/libzmq.so ############################################################
It looks like the docs are missing a step. After cloning the repo, you’ll want to
cd
into the resulting directory and createcmake-build
under it asCMakeLists.txt
exists in the root of the repo.