Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 976 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 976 Bytes

Dependencies

Install

  • Python

Download the models MobileNet-SSD

Create virtual environment

create a python virtual environment with the name of "science2024"

python -m venv <virtual_env_name>

Activate the virtual environment

in order to activate it execute the following command, under the path of where the environment was created

<virtual_env_name>\Scripts\activate.bat

Activate the virtual environment Linux

source venv/bin/activate

Initialize project

create a a new file with the name requirements.txt

opencv-python-headless
pytesseract
flask
numpy
Pillow

in order to execute the requierements execute the following command

pip install -r requirements.txt