From a82d038852e655f8c8e01eac54bfc7daa711a06e Mon Sep 17 00:00:00 2001 From: boltgolt Date: Wed, 21 Feb 2018 00:18:16 +0100 Subject: [PATCH] Even adding cmake as dependency --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index 55fad7d..973dd4d 100644 --- a/installer.py +++ b/installer.py @@ -36,7 +36,7 @@ time.sleep(.5) log("Installing required apt packages") # Install packages though apt -handleStatus(subprocess.call(["apt", "install", "-y", "git", "python-pip", "python-dev", "python-setuptools", "python3-setuptools", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"])) +handleStatus(subprocess.call(["apt", "install", "-y", "git", "python-pip", "python-dev", "python-setuptools", "python3-setuptools", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv", "cmake"])) # Update pip handleStatus(subprocess.call(["pip install --upgrade pip"], shell=True))