-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
42 lines (36 loc) · 948 Bytes
/
Copy pathinstall.bat
File metadata and controls
42 lines (36 loc) · 948 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
42
@echo off
echo Football Player Tracker - Installation Script
echo ============================================
echo.
echo Checking Python installation...
python --version >nul 2>&1
if errorlevel 1 (
echo ERROR: Python is not installed or not in PATH
echo Please install Python 3.8 or higher from python.org
pause
exit /b 1
)
echo Python found!
python --version
echo.
echo Installing required packages...
echo This may take a few minutes...
echo.
pip install --upgrade pip
pip install -r requirements.txt
if errorlevel 1 (
echo.
echo ERROR: Failed to install some packages
echo Please check the error messages above
pause
exit /b 1
)
echo.
echo Installation completed successfully!
echo.
echo You can now run the tracker using:
echo python football_tracker.py (Basic GUI)
echo python enhanced_tracker.py (Enhanced GUI)
echo python demo.py video_file.mp4 (Command line demo)
echo.
pause