14 lines
231 B
Plaintext
14 lines
231 B
Plaintext
@echo off
|
|
echo Starting Meeting Assistant...
|
|
|
|
REM Check Python
|
|
python --version >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Python not found. Please install Python 3.8+
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
REM Run the assistant
|
|
python main.py
|
|
pause |