1
0

Add auto-installer for dependencies

This commit is contained in:
erickahmed
2022-08-10 11:26:55 +02:00
committed by Erick
parent f8c16a2f74
commit 407949ec09
+9
View File
@@ -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")