-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch_raven.bat
More file actions
29 lines (23 loc) · 1.03 KB
/
Copy pathlaunch_raven.bat
File metadata and controls
29 lines (23 loc) · 1.03 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
@echo off
setlocal
REM ── RAVEN – Requirement Analysis and Visualisation Engine ──────────────────
REM Double-click this file to launch the RAVEN GUI in your browser.
REM Requirements: Python 3.10+ on PATH, dependencies installed (see README).
REM ───────────────────────────────────────────────────────────────────────────
REM Move to the directory containing this script (the project root)
cd /d "%~dp0"
REM Check Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python not found. Install Python 3.10+ and add it to PATH.
pause
exit /b 1
)
REM Install / upgrade dependencies silently on first run
echo Installing dependencies ...
python -m pip install -e ".[io]" --quiet
python -m pip install rdflib --quiet
REM Launch the GUI (opens browser automatically)
echo Starting RAVEN GUI ...
python -m reqgraph gui
pause