@mytec: iter3.2.5 gpu polish start

This commit is contained in:
2026-02-03 12:33:52 +02:00
parent 20d19d09ae
commit a61753c642
10 changed files with 1125 additions and 2 deletions

41
install.bat Normal file
View File

@@ -0,0 +1,41 @@
@echo off
title RFCP - First Time Setup
echo ============================================
echo RFCP - RF Coverage Planner - Setup
echo ============================================
echo.
REM Check if Python exists
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python not found!
echo.
echo Please install Python 3.10+ from:
echo https://www.python.org/downloads/
echo.
echo Make sure to check "Add Python to PATH" during installation.
echo.
pause
exit /b 1
)
echo Python found:
python --version
echo.
REM Change to script directory
cd /d "%~dp0"
REM Run installer
echo Running RFCP installer...
echo.
python install_rfcp.py
echo.
echo ============================================
echo Setup complete!
echo.
echo To start RFCP, run: RFCP.bat
echo Then open: http://localhost:8090
echo ============================================
pause