install.bat 775 B

123456789101112131415161718192021222324252627282930313233
  1. @echo off
  2. REM LightGlue Demo - Automatic Installer
  3. echo.
  4. echo ============================================
  5. echo LightGlue Demo - Installer
  6. echo ============================================
  7. echo.
  8. echo This will install required Python packages.
  9. echo.
  10. pause
  11. echo.
  12. echo Installing dependencies...
  13. echo.
  14. pip install -r requirements.txt
  15. if errorlevel 1 (
  16. echo.
  17. echo ERROR: Installation failed!
  18. echo Please check:
  19. echo 1. Python is installed
  20. echo 2. pip is available
  21. echo 3. You have internet connection
  22. pause
  23. exit /b 1
  24. )
  25. echo.
  26. echo ============================================
  27. echo Installation completed!
  28. echo ============================================
  29. echo.
  30. echo You can now run the demo using:
  31. echo start_demo_fast.bat
  32. echo.
  33. pause