random_matrix_ESD / build.sh
euler314's picture
Create build.sh
c6f7f54 verified
raw
history blame
318 Bytes
#!/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