| 123456789101112131415161718192021222324252627282930313233 |
- @echo off
- REM LightGlue Demo - Automatic Installer
- echo.
- echo ============================================
- echo LightGlue Demo - Installer
- echo ============================================
- echo.
- echo This will install required Python packages.
- echo.
- pause
- echo.
- echo Installing dependencies...
- echo.
- pip install -r requirements.txt
- if errorlevel 1 (
- echo.
- echo ERROR: Installation failed!
- echo Please check:
- echo 1. Python is installed
- echo 2. pip is available
- echo 3. You have internet connection
- pause
- exit /b 1
- )
- echo.
- echo ============================================
- echo Installation completed!
- echo ============================================
- echo.
- echo You can now run the demo using:
- echo start_demo_fast.bat
- echo.
- pause
|