11 lines
240 B
Batchfile
11 lines
240 B
Batchfile
@echo off
|
|
echo Installing dependencies...
|
|
pip install pyinstaller esptool pyserial
|
|
|
|
echo.
|
|
echo Building executable from spec file...
|
|
pyinstaller ESP32_Flasher.spec
|
|
|
|
echo.
|
|
echo Build complete! Find ESP32_Flasher.exe in the dist folder.
|
|
pause |