diff --git a/README.md b/README.md index a6fda35..3645b24 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Run the installer by pasting (`ctrl+shift+V`) the following command into the ter wget -O /tmp/howdy_install.py https://raw.githubusercontent.com/Boltgolt/howdy/master/installer.py && sudo python3 /tmp/howdy_install.py ``` -This will guide you through the installation. When that's done run `howdy USER add` and replace `USER` with your username to add a face model. +This will guide you through the installation. When that's done run `sudo howdy USER add` and replace `USER` with your username to add a face model. If nothing went wrong we should be able to run sudo by just showing your face. Open a new terminal and run `sudo -i` to see it in action. diff --git a/installer.py b/installer.py index 52be40f..a9a889b 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", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"])) +handleStatus(subprocess.call(["apt", "install", "-y", "git", "libpam-python", "fswebcam", "libopencv-dev", "python-opencv"])) log("Starting camera check")