Files
slowlyo a9b1dcce98 fix: ga scripts prefer project .venv over system python
Prefer project virtualenv Python in ga launchers to avoid PEP 668/system Python issues, falling back to PATH python when no venv exists.
2026-05-26 12:03:14 +08:00

6 lines
114 B
Batchfile

@echo off
cd /d "%~dp0"
set "PY=.venv\Scripts\python.exe"
if not exist "%PY%" set "PY=python"
"%PY%" -m ga_cli %*