24Sureshkumar's picture
Update app.sh
3dd44c2 verified
raw
history blame
188 Bytes
#!/bin/bash
# Set up virtual environment
python -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run the Streamlit app
streamlit run app.py