Slash / start.sh
ND06-25's picture
Revert-Railway troubleshooting
f393828
raw
history blame
642 Bytes
#!/bin/bash
echo "πŸ“š Book Summarizer AI - Unix/Linux/Mac Startup"
echo "=============================================="
echo ""
echo "πŸ”§ Checking Python installation..."
if ! command -v python3 &> /dev/null; then
echo "❌ Python 3 is not installed or not in PATH"
echo "Please install Python 3 from https://python.org"
exit 1
fi
echo "βœ… Python 3 found"
echo ""
echo "πŸ“¦ Installing dependencies..."
pip3 install -r requirements.txt
if [ $? -ne 0 ]; then
echo "❌ Failed to install dependencies"
exit 1
fi
echo "βœ… Dependencies installed"
echo ""
echo "πŸš€ Starting Book Summarizer AI..."
python3 start.py