12 lines
273 B
Batchfile
12 lines
273 B
Batchfile
@echo off
|
|
echo Installing libraries...
|
|
python -m pip install -r requirements.txt
|
|
|
|
echo Building EXE...
|
|
python -m PyInstaller --onefile --windowed --name GiteaAnalyzer main.py
|
|
|
|
echo.
|
|
echo Done! EXE file is here: dist\GiteaAnalyzer.exe
|
|
echo You can copy it to Desktop.
|
|
pause
|