Install pip and virtualenvwrapper
pip install virtualenvwrapper
Setup your local virtual environment
cd <path_to_your_local_git_repo>
virtualenv venv -p python3
source venv/bin/activate
Install python dependencies
pip install -r requirements.txt
Activate virtual environment and start Jupiter server
cd <path_to_your_local_git_repo>
source venv/bin/activate
cd notebooks
jupyter notebook
Most reccent version of this repository is avalaible at GitHub.