-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
30 lines (25 loc) · 718 Bytes
/
Copy pathsetup.bat
File metadata and controls
30 lines (25 loc) · 718 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
@echo off
title Universal Browser Backup - Setup
color 0B
echo ==========================================
echo Universal Browser Backup - Setup
echo ==========================================
echo.
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ERROR: Python not found. Please install Python 3.12+ from python.org
pause
exit /b 1
)
echo [1/3] Upgrading pip...
python -m pip install --upgrade pip
echo [2/3] Installing dependencies...
python -m pip install -r requirements.txt
echo [3/3] Finalizing...
echo.
echo ==========================================
echo Setup Complete!
echo You can now run the app with: python main.py
echo ==========================================
echo.
pause