Files
whisper_voice/build_exe.bat
2026-01-24 17:03:52 +02:00

18 lines
347 B
Batchfile

@echo off
echo Building Whisper Voice Portable EXE...
if not exist venv (
echo Please run run_source.bat first to setup environment!
pause
exit /b
)
call venv\Scripts\activate
pip install pyinstaller
echo Running PyInstaller...
pyinstaller build.spec --clean --noconfirm
echo.
echo Build Complete! Check dist/WhisperVoice.exe
pause