After cloning the repository, run the following commands inside the dsp_app folder to set up your development environment:
# Create virtual environment
python -m venv .venv # On Windows
python3 -m venv .venv # On Linux/Mac
# Activate virtual environment
.venv\Scripts\activate # On Windows
source .venv/bin/activate # On Linux/Mac
# Install dependencies
pip install -r requirements.txt
## Run the Streamlit App
streamlit run main_app.pyThen Streamlit will open automatically in your browser at: http://localhost:8501
Then you're ready to start coding!