- Ensure Python is installed on your system. You can download it from the official Python website.
-
Create a new virtual environment and activate it:
python3 -m venv .venv source .venv/bin/activate
-
Create a new virtual environment and activate it:
python -m venv .venv .venv\Scripts\activate
-
Install the necessary packages:
pip install -r requirements.txt
-
Start the FastAPI app:
# On Linux/MacOS : python3 main.py # On Windows : python main.py
-
Launch the Streamlit interface:
streamlit run streamlit_interface.py