Spaces:
Running
Running
File size: 318 Bytes
c6f7f54 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash
echo "Installing system dependencies..."
apt-get update && apt-get install -y $(cat packages.txt)
echo "Installing Python requirements..."
pip install -r requirements.txt
echo "Building C++ extension..."
python -m pip install -e .
echo "Installation complete. Starting Streamlit..."
streamlit run app.py |