build_exe.bat 357 B

123456789101112131415
  1. @echo off
  2. REM Build lf_mri_gui.exe with PyInstaller
  3. REM Run from lf_mri_gui\ with venv activated:
  4. REM .venv\Scripts\activate
  5. REM build_exe.bat
  6. echo [1/3] Installing PyInstaller...
  7. pip install pyinstaller --quiet
  8. echo [2/3] Building...
  9. pyinstaller lf_mri_gui.spec --clean --noconfirm
  10. echo [3/3] Done!
  11. echo Output: dist\lf_mri_gui\lf_mri_gui.exe
  12. pause