To create an python venv and install packages
start a Terminal at this very location and enter:

[WIN]
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
jupyter notebook

[MACOS|LINUX]
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
jupyter notebook