AdvancedLivePortrait-WebUI / start-webui.ps1
jhj0517
Add shell script
79580b2
raw
history blame
209 Bytes
if (-Not (Test-Path -Path "$PSScriptRoot\venv\Scripts")) {
Write-Output "Creating venv..."
& .\install.ps1
}
& .\venv\Scripts\Activate.ps1
python .\app.py $args
Write-Host "Launching the app"
Pause