11 lines
196 B
Batchfile
11 lines
196 B
Batchfile
echo === EXE erstellen ===
|
|
|
|
@echo off
|
|
call .venv\Scripts\activate.bat
|
|
pyinstaller --onefile filter_zip_no_stl.py
|
|
|
|
echo.
|
|
echo === Fertig! ===
|
|
echo EXE liegt unter: dist\filter_zip_no_stl.exe
|
|
pause
|