Files
enginex-bi_series-tts/bi_v100-gpt-sovits/GPT-SoVITS/go-webui.ps1
2025-08-20 17:05:36 +08:00

8 lines
236 B
PowerShell

$ErrorActionPreference = "SilentlyContinue"
chcp 65001
Set-Location $PSScriptRoot
$runtimePath = Join-Path $PSScriptRoot "runtime"
$env:PATH = "$runtimePath;$env:PATH"
& "$runtimePath\python.exe" -I "$PSScriptRoot\webui.py" zh_CN
pause