Use a virtual environment to isolate your project dependencies.
python -m venv venv
Before you work on your project, activate the corresponding environment:
source venv/Scripts/activate
Install the project dependencies listed in requirements.txt
:
pip install -r requirements.txt
python app.py