File size: 438 Bytes
6880cd9 be5f84f 6880cd9 be5f84f 6880cd9 be5f84f 6880cd9 be5f84f 6880cd9 be5f84f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
echo "Book Summarizer - Startup"
echo "========================="
if ! command -v python3 &> /dev/null; then
echo "Python 3 is not installed or not in PATH."
exit 1
fi
echo "Installing dependencies (if needed)..."
pip3 install -r requirements.txt || {
echo "Failed to install dependencies."
exit 1
}
echo "Launching Streamlit..."
python3 -m streamlit run app.py --server.port 8501 --server.address 0.0.0.0
|