- Create a virtual environment
python -m venv venv
- Activate the virtual environment
.\venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- cd into the code directory
cd code
- Run the app
python app.py
- Create a virtual environment
python -m venv venv
- Activate the virtual environment
source venv/bin/activate
- Install dependencies
pip install -r requirements.txt
- cd into the code directory
cd code
- Run the app
python3 app.py