AvatarTest / webui.bat
lazhrach's picture
Updated packages and requirements, added device print statement, modified README, added webui.bat and test.sh scripts, and downloaded new models and enhancer weights.
d05c508
raw
history blame
270 Bytes
@echo off
IF NOT EXIST venv (
python -m venv venv
) ELSE (
echo venv folder already exists, skipping creation...
)
call .\venv\Scripts\activate.bat
set PYTHON="venv\Scripts\Python.exe"
echo venv %PYTHON%
%PYTHON% App.py
echo.
echo Launch unsuccessful. Exiting.
pause