7 lines
223 B
PowerShell
7 lines
223 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
$Python = "C:\Users\nelso\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\python.exe"
|
|
if (-not (Test-Path $Python)) {
|
|
$Python = "python"
|
|
}
|
|
& $Python ".\local_app\server.py"
|