From 8b27d0894069d6825f91a36ba9beeaf57836dc47 Mon Sep 17 00:00:00 2001 From: boltgolt Date: Tue, 20 Feb 2018 23:51:11 +0100 Subject: [PATCH] Also added setuptools apt install --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index e350129..8a58b73 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", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"])) +handleStatus(subprocess.call(["apt", "install", "-y", "git", "python-pip", "python-dev", "python-setuptools", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"])) # Update pip handleStatus(subprocess.call(["pip install --upgrade pip"], shell=True))