File size: 453 Bytes
05fcd0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
echo Starting FramePack-Studio...



REM Check if Python is installed (basic check)
where python >nul 2>&1
if %errorlevel% neq 0 (
    echo Error: Python is not installed or not in your PATH. Cannot run studio.py.
    goto end
)

if exist "%cd%/venv/Scripts/python.exe" (

"%cd%/venv/Scripts/python.exe" studio.py

) else (

echo Error: Virtual Environment for Python not found. Did you install correctly?
goto end 

)

:end