Setup a Virtual Environment Open the terminal/powershell and navigate to the root of this project folder. Linux / MacOS python3 -m venv venv Activate the environment source venv/bin/activate Windows python -m venv venv Activate the environment .\venv\Scripts\activate Install Requirements pip install -r requirements.txt