0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

Fix unmet dependency pip

This commit is contained in:
boltgolt 2018-02-20 23:29:19 +01:00 committed by GitHub
parent 10aae8266c
commit f217eaad05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,10 @@ time.sleep(.5)
log("Installing required apt packages")
# Install packages though apt
handleStatus(subprocess.call(["apt", "install", "-y", "git", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"]))
handleStatus(subprocess.call(["apt", "install", "-y", "git", "python-pip", "python-dev", "build-essential", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"]))
# Update pip
handleStatus(subprocess.call(["pip install --upgrade pip"], shell=True))
log("Starting camera check")