@echo off REM IoT Firmware Loader - Windows launcher cd /d "%~dp0" if not exist "venv" ( echo Creating virtual environment... python -m venv venv ) call venv\Scripts\activate.bat echo Checking and installing required packages... pip install -r requirements.txt --quiet echo Starting IoT Firmware Loader... python main.py