licode
licode copied to clipboard
cmake: command not found
Hi Team,
I have cloned from "git clone https://github.com/ging/licode.git" While running official dockerfile of licode throwing below error,
./installUbuntuDeps.sh: line 188: make: command not found ./installUbuntuDeps.sh: line 189: make: command not found Cleaning up... Removing intermediate container 7a4cd5225e67 ---> 8ecd788fe384 Step 9/15 : WORKDIR /opt Removing intermediate container bc9f11277540 ---> 25f2cd8dce70 Step 10/15 : COPY . /opt/licode ---> 62552c78a3b3 Step 11/15 : RUN mkdir /opt/licode/.git ---> Running in 32f0a0031c42 Removing intermediate container 32f0a0031c42 ---> 09b61cd031da Step 12/15 : WORKDIR /opt/licode/scripts Removing intermediate container 9c5973f1b888 ---> 6488878de4c8 Step 13/15 : RUN ./installErizo.sh -dfeacs && ./../nuve/installNuve.sh && ./installBasicExample.sh ---> Running in c8ee524d30ad Installing erizo... generating release ./generateProject.sh: line 19: cmake: command not found The command '/bin/sh -c ./installErizo.sh -dfeacs && ./../nuve/installNuve.sh && ./installBasicExample.sh' returned a non-zero code: 127
Please help me to fix this issue.
Thanks Sravan
You don't have make and cmake installed.
Run following command to install them.
sudo apt-get install build-essential cmake
thanks, it's working
@traw this command worked sudo apt-get install build-essential cmake thanks!
thanks, it's working perfect
FYI, there's another way to install cmake
by using brew
https://github.com/travis-ci/travis-ci/issues/2175#issuecomment-42928703