- Clone and fork the repo.
- Navigate to the root project.
- Navigate into the server, then create a virtual environment and install the dependencies:
$ cd server
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
- Copy yolov3 weights to
weights
directory. NOTE: weights filename should beyolov3.weights
- Load weights using:
python load_weights.py
- Run the server:
python app.py
- Navigate to
client
directory. - Install dependencies using
npm install
- Run server:
npm start