e5b58fc22f
Co-authored-by: Davide Tonelli <93596988+DavideTonel@users.noreply.github.com>
10 lines
287 B
Python
10 lines
287 B
Python
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")
|