Spaces:
Runtime error
Runtime error
File size: 258 Bytes
d886d57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | @echo off
REM 设置Python路径
set "PATH=%cd%\environment\Scripts;%cd%\environment\Library\bin;%cd%\environment;%PATH%"
REM 检查并更新ChatTTS
echo Checking and updating ChatTTS...
python update.py
REM 提示更新完成
echo Update complete!
pause
|