first commit
This commit is contained in:
16
run.bat
Normal file
16
run.bat
Normal file
@@ -0,0 +1,16 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user