# Flask Web App Tutorial ## Setup & Installation Make sure you have the latest version of Python installed. ```bash git clone ``` ```bash pip install -r requirements.txt ``` Flask version: 2.3.3 ```bash pip3 install --force-reinstall -v "flask==2.3.3" ``` werkzeug version: 2.3 ```bash pip3 install --force-reinstall -v "werkzeug==2.3" ``` ## Running The App ```bash python main.py ``` ## Viewing The App Go to `http://127.0.0.1:5000` # EMPOCT