9 lines
202 B
PowerShell
9 lines
202 B
PowerShell
#!/usr/bin/env pwsh
|
|
# launch_kohya.ps1 — start kohya_ss GUI
|
|
|
|
$root = $PSScriptRoot
|
|
Set-Location "$root/kohya_ss"
|
|
|
|
.\venv\Scripts\Activate.ps1
|
|
python kohya_gui.py --listen 127.0.0.1 --server_port 7860
|