File size: 642 Bytes
6880cd9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f393828
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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