forked from zhadyz/AI_SOC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART-AI-SOC.bat
More file actions
40 lines (34 loc) · 1.04 KB
/
START-AI-SOC.bat
File metadata and controls
40 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@echo off
REM ===================================================================
REM AI-SOC One-Click Launcher
REM ===================================================================
REM Double-click this file to start the AI-SOC Control Center
REM ===================================================================
title AI-SOC Launcher
echo.
echo ========================================================
echo AI-SOC Control Center - Starting...
echo ========================================================
echo.
echo Checking Python installation...
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo.
echo [ERROR] Python is not installed!
echo.
echo Please install Python from: https://www.python.org/downloads/
echo Make sure to check "Add Python to PATH" during installation
echo.
pause
exit /b 1
)
echo Python found!
echo.
echo Installing required packages...
python -m pip install --quiet flask
echo.
echo Launching AI-SOC Control Center...
echo.
python AI-SOC-Launcher.py
pause