1
0
This repository has been archived on 2026-09-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vision-engine-layer-1/dependencies.py
T
Erick 6aeca8fbe9 Add instructions about creating a virtual enviroment and update dependencies auto-installer script (#16)
* Add instructions about prereq and dependency

* Add virtualenv dependency
2022-08-10 12:25:05 +02:00

11 lines
323 B
Python

import os
# List of prerequisite packages needed
os.system("pip install virtualenv")
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")