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.
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 create cmake-build
under it as CMakeLists.txt
exists in the root of the repo.
- git clone https://github.com/zeromq/libzmq
- cd libzmq
- mkdir cmake-build && cd cmake-build
- cmake .. && make -j 4
- make test && make install && sudo ldconfig
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.This comment has been deleted
Listings in the apt cache is the newest packages available (
sudo apt-get update
)apt-get install zeromq
will install ZeroMQ on any recent version of Ubuntu.