Question
Install ZeroMQ on Ubunto 14.04.4 x64
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??
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.
×
apt-get install zeromq
will install ZeroMQ on any recent version of Ubuntu.Listings in the apt cache is the newest packages available (
sudo apt-get update
)a stab in the dark, but looks like according the manual compilation instructions that you linked to, it asks to go one directory down to a directory called
cmake-build
and then do a cmake on the prior directory up withcmake .. && make -j 4
So, it seems like you are supposed to go into
cmake-build
, and then run the cmake from there. I don’t know your level of Linux expertise, but I think it might be worth mentioning thatcmake ..
should be directingcmake
to run on the files in the directory one level back up.