-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.bat
More file actions
33 lines (27 loc) · 755 Bytes
/
install.bat
File metadata and controls
33 lines (27 loc) · 755 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
@echo off
REM Quick installation script for sqlBackup on Windows
echo Installing sqlBackup...
REM Check if Python 3 is available
python --version >nul 2>&1
if errorlevel 1 (
echo Error: Python is not installed or not in PATH
exit /b 1
)
REM Check if pip is available
pip --version >nul 2>&1
if errorlevel 1 (
echo Error: pip is not installed or not in PATH
exit /b 1
)
echo Using pip for installation...
REM Install dependencies
echo Installing dependencies...
pip install -r requirements.txt
echo Installation complete!
echo.
echo Next steps:
echo 1. Copy config.ini.default to config.ini
echo 2. Edit config.ini to match your environment
echo 3. Run: python sqlBackup
echo.
echo For development installation, run: pip install -e .