This project was developed using Python 3.7.1. Navigate to the following link and download the python3 binary for your particular os.
Note the location that you saved this binary too.
$ cd k8s-training-image-processor
$ pip install virtualenv
$ virtualenv -p /path/to/you/python3/binary venv
$ source venv/bin/activate
Test that you're now using the correct python binary
$ python --version
$ cd app
$ pip install -r requirements.txt
#from the k8s-traning-image-processor/app directory
$ python app.py
#from the k8s-traning-image-processor/app directory
$ python -m pytest
To exit the venv python environment you can run the following command:
$ deactivate