Slash / start.bat
ND06-25's picture
first commit to AI repo
6880cd9
raw
history blame
619 Bytes
@echo off
echo πŸ“š Book Summarizer AI - Windows Startup
echo ======================================
echo.
echo πŸ”§ Checking Python installation...
python --version >nul 2>&1
if errorlevel 1 (
echo ❌ Python is not installed or not in PATH
echo Please install Python from https://python.org
pause
exit /b 1
)
echo βœ… Python found
echo.
echo πŸ“¦ Installing dependencies...
pip install -r requirements.txt
if errorlevel 1 (
echo ❌ Failed to install dependencies
pause
exit /b 1
)
echo βœ… Dependencies installed
echo.
echo πŸš€ Starting Book Summarizer AI...
python start.py
pause