The following steps are specified for a Linux development environment. Each command specified may require slight adjustments to get working for your particular environment, and further adjustments outside of a Linux environment.
Create virtual Python environment
python3 -m venv venv
Enable virtual environment
source venv/bin/activate
Install requirements
python3 -m pip install -r requirements.txt
NotFoundError: no lapack/blas resources found
sudo apt-get install gfortran libopenblas-dev liblapack-dev
:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.
sudo apt-get install python3-tk
You are now ready to begin!