- @echo off
- REM Build lf_mri_gui.exe with PyInstaller
- REM Run from lf_mri_gui\ with venv activated:
- REM .venv\Scripts\activate
- REM build_exe.bat
- echo [1/3] Installing PyInstaller...
- pip install pyinstaller --quiet
- echo [2/3] Building...
- pyinstaller lf_mri_gui.spec --clean --noconfirm
- echo [3/3] Done!
- echo Output: dist\lf_mri_gui\lf_mri_gui.exe
- pause
|