-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
41 lines (35 loc) · 945 Bytes
/
Copy pathinstall.bat
File metadata and controls
41 lines (35 loc) · 945 Bytes
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
41
@echo off
REM Windows installer for Gource GUI
REM This script runs the Python installer with Windows-specific handling
echo.
echo ===============================================================
echo Gource GUI - Windows Installer
echo ===============================================================
echo.
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo ❌ Python is not installed or not in PATH
echo.
echo Please install Python 3.7+ from https://python.org
echo Make sure to check "Add Python to PATH" during installation
echo.
pause
exit /b 1
)
echo 🐍 Python found, running installer...
echo.
REM Run the Python installer
python install.py
REM Check if installation was successful
if errorlevel 1 (
echo.
echo ❌ Installation failed
pause
exit /b 1
) else (
echo.
echo ✅ Installation completed successfully!
echo.
)
pause