- Python (3.8.6 - 3.9 were using during implementation)
- pip (Should get installed with Python on default)
- Git
To start do steps listed below assuming you are familiar with usage of GitBash. If not here is a Git manual
-
git clone https://github.com/simonloach/IO2020.git
-
cd IO2020
-
python -m venv venv
-
Depending if you use powershell, cmd or gitbash accordingly use (order maintained):
./venv/Scripts/activate.ps1
./venv/Scripts/activate.bat
. venv/Scripts/activate
-
pip install -r requirements.txt
-
Download YOLOv3 weights yolov3.weights file: https://pjreddie.com/media/files/yolov3.weights
-
Make sure your folder looks like that:
IO2020
| backend.py
| gui.py
| README.md
| requirements.txt
| yolov3.cfg
| yolov3.weights
| coco.names
+---venv
python gui.py