From 95e6287d79c896d9196658a47558f3aaad587bdc Mon Sep 17 00:00:00 2001 From: puke <1129090915@qq.com> Date: Fri, 5 Dec 2025 11:17:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0start=5Fweb.bat=E7=9A=84?= =?UTF-8?q?=E5=87=BA=E9=94=99=E6=97=B6=E7=9A=84=E7=94=A8=E6=88=B7=E5=BC=95?= =?UTF-8?q?=E5=AF=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start_web.bat | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/start_web.bat b/start_web.bat index 62a339c..f257c2d 100644 --- a/start_web.bat +++ b/start_web.bat @@ -1,7 +1,42 @@ @echo off -REM Start Pixelle-Video Web UI +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 +) +