Spaces:
Runtime error
Runtime error
File size: 247 Bytes
d886d57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @echo off
REM 设置环境变量
echo Setting up environment variables...
set "PATH=%cd%\environment\Scripts;%cd%\environment\Library\bin;%cd%\environment;%PATH%"
REM 运行webui下的main.py
echo Running web UI...
python webui\main.py
pause
|