15 lines
312 B
Batchfile
15 lines
312 B
Batchfile
@echo off
|
|
echo Installing required packages...
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
|
|
echo Building executable...
|
|
python build.py
|
|
|
|
echo Done!
|
|
if exist "dist\Serien-Checker.exe" (
|
|
echo Executable created successfully at dist\Serien-Checker.exe
|
|
) else (
|
|
echo Error: Build failed!
|
|
)
|
|
pause |