From 407949ec09b563a6783b4c4868d4caa5f6f4b63c Mon Sep 17 00:00:00 2001 From: erickahmed Date: Wed, 10 Aug 2022 11:26:55 +0200 Subject: [PATCH] Add auto-installer for dependencies --- dependencies.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dependencies.py diff --git a/dependencies.py b/dependencies.py new file mode 100644 index 0000000..3359210 --- /dev/null +++ b/dependencies.py @@ -0,0 +1,9 @@ +import os + +# List of prerequisite packages needed +os.system("python -m pip install --upgrade pip") +os.system("pip install numpy") +os.system("pip install opencv-python") +os.system("pip install pyautogui") +os.system("pip install google-cloud") +os.system("pip install google-cloud-vision") \ No newline at end of file