a9b1dcce98
Prefer project virtualenv Python in ga launchers to avoid PEP 668/system Python issues, falling back to PATH python when no venv exists.
6 lines
116 B
Batchfile
6 lines
116 B
Batchfile
@echo off
|
|
cd /d "%~dp0.."
|
|
set "PY=.venv\Scripts\python.exe"
|
|
if not exist "%PY%" set "PY=python"
|
|
"%PY%" -m ga_cli %*
|