7 lines
178 B
Batchfile
7 lines
178 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
python -m pip install -r requirements.txt
|
|
python -m pip install pyinstaller
|
|
python -m PyInstaller --onefile --windowed --name GiteaAnalyzer main.py
|
|
pause
|