start_web.bat 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @echo off
  2. chcp 65001 >nul 2>&1
  3. echo 🚀 Starting Pixelle-Video Web UI...
  4. echo.
  5. uv run streamlit run web/app.py
  6. if errorlevel 1 (
  7. echo.
  8. echo ========================================
  9. echo [ERROR] Failed to Start
  10. echo ========================================
  11. echo.
  12. echo It appears you downloaded the SOURCE CODE directly.
  13. echo.
  14. echo ========================================
  15. echo For Regular Users:
  16. echo ========================================
  17. echo Please download the ONE-CLICK PACKAGE from:
  18. echo https://github.com/AIDC-AI/Pixelle-Video/releases
  19. echo.
  20. echo The one-click package includes:
  21. echo ✓ Pre-configured Python environment
  22. echo ✓ All required dependencies
  23. echo ✓ FFmpeg tools
  24. echo ✓ Ready to use, no setup needed
  25. echo.
  26. echo ========================================
  27. echo For Developers:
  28. echo ========================================
  29. echo If you intend to develop or modify the code:
  30. echo 1. Install uv: https://docs.astral.sh/uv/
  31. echo 2. Run: uv sync
  32. echo 3. Then run this script again
  33. echo.
  34. echo ========================================
  35. echo.
  36. pause
  37. )