HackUTD 2023 Project
- Setup a Virtual Environment
If you have Python > 3 installed you can run the following In the root of the project:
python3 -m venv .venvThis will create a folder named .venv in your directory, you can activate it if you are using bash with:
source .venv/bin/activateDeactivate it with:
deactivate- Install the required packages
pip3 install -r requirements.txt- Run the app with:
python3 -m flask --app jakept/main.py run