GPT-SoVITS-v2pro / go-webui.ps1
wsj1995's picture
feat: init
8aad0a5
raw
history blame contribute delete
236 Bytes
$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