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