mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-08-16 06:09:50 +08:00
8 lines
236 B
PowerShell
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
|