We recommend using Python 3.10 for this project. Ensure you have Python 3.10 installed.
To install the required packages, follow these steps:
-
Create a virtual environment (optional but recommended):
python -m venv myenv
-
Activate the virtual environment:
-
On macOS/Linux:
source myenv/bin/activate
-
On Windows:
myenv\Scripts\activate
-
-
Install the required packages:
pip install -r requirements.txt
If you encounter any missing package errors or conflicts, you may need to resolve them by installing the specific packages manually. Check the error messages for guidance.
Once all dependencies are installed, you can run the application using:
python main.py
Flask will print the address where the app is running (e.g., http://127.0.0.1:5000/). You can open this address in your web browser to access the application.
This project is licensed under the MIT License.