Files
Mira_Firmware_Loader/run.bat
2026-03-06 22:19:58 +07:00

17 lines
323 B
Batchfile

@echo off
REM IoT Firmware Loader - Windows launcher
cd /d "%~dp0"
if exist "venv" (
call venv\Scripts\activate.bat
) else (
echo Creating virtual environment...
python -m venv venv
call venv\Scripts\activate.bat
pip install PyQt6 scapy requests
)
echo Starting IoT Firmware Loader...
python main.py