yj
2026-03-31 4becf7b5eba5de2d9889f379eb88aeb6cb16f760
1
2
3
4
5
6
7
8
9
@echo off
echo Installing packaging dependencies...
pip install -r requirements-packaging.txt
 
echo Building executable with PyInstaller...
pyinstaller pyinstaller_config.spec
 
echo Build process completed. Check the 'dist' folder for the executable.
pause