File size: 481 Bytes
6880cd9 be5f84f 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 20 21 22 23 24 |
@echo off
echo Book Summarizer - Windows Startup
echo ================================
python --version >nul 2>&1
if errorlevel 1 (
echo Python is not installed or not in PATH.
pause
exit /b 1
)
echo Installing dependencies (if needed)...
pip install -r requirements.txt
if errorlevel 1 (
echo Failed to install dependencies.
pause
exit /b 1
)
echo Launching Streamlit...
python -m streamlit run app.py --server.port 8501 --server.address 0.0.0.0
pause
|