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 e2d8fb2bc4 Implementation of search function for google.com and amazon.com (#20)
* Update dependencies

* Import new libraries for google search

* Implement simple google search function

* Global variable

* Rename main file

* Rename main file

* Add functions to do Google searches

* Remove unnecessary import

* Implement Amazon search for labels and colors

* Ops forgot to comment out test stuff
2022-08-14 01:55:32 +02:00

13 lines
397 B
Python

import os
# List of prerequisite packages needed
os.system("python -m pip install --upgrade pip")
os.system("pip install scipy")
os.system("pip install numpy")
os.system("pip install virtualenv")
os.system("pip install opencv-python")
os.system("pip install pyautogui")
os.system("pip install google-cloud")
os.system("pip install google-cloud-vision")
os.system("pip install pycopy-webbrowser")