File size: 143 Bytes
ecb622f
 
 
 
 
 
 
1
2
3
4
5
6
7
8
$ErrorActionPreference = "Stop"

if (Get-Command py -ErrorAction SilentlyContinue) {
    py -3 run_local.py
} else {
    python run_local.py
}