-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathstart_web.bat
More file actions
42 lines (37 loc) Β· 1.18 KB
/
start_web.bat
File metadata and controls
42 lines (37 loc) Β· 1.18 KB
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
34
35
36
37
38
39
40
@echo off
chcp 65001 >nul 2>&1
echo π Starting Pixelle-Video Web UI...
echo.
uv run streamlit run web/app.py
if errorlevel 1 (
echo.
echo ========================================
echo [ERROR] Failed to Start
echo ========================================
echo.
echo It appears you downloaded the SOURCE CODE directly.
echo.
echo ========================================
echo For Regular Users:
echo ========================================
echo Please download the ONE-CLICK PACKAGE from:
echo https://github.com/AIDC-AI/Pixelle-Video/releases
echo.
echo The one-click package includes:
echo β Pre-configured Python environment
echo β All required dependencies
echo β FFmpeg tools
echo β Ready to use, no setup needed
echo.
echo ========================================
echo For Developers:
echo ========================================
echo If you intend to develop or modify the code:
echo 1. Install uv: https://docs.astral.sh/uv/
echo 2. Run: uv sync
echo 3. Then run this script again
echo.
echo ========================================
echo.
pause
)