File size: 380 Bytes
6015c25 d891499 6015c25 d891499 6015c25 d891499 6015c25 d891499 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
# Check if virtual environment exists, if not create it
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python -m venv venv
fi
# Activate virtual environment
source venv/bin/activate
# Install requirements
echo "Installing requirements..."
pip install -r requirements.txt
# Run the app
echo "Starting AI Life Coach..."
streamlit run app.py
|