From 05f9bd4b778d544ebf4083e120fff7619b06f0a9 Mon Sep 17 00:00:00 2001 From: Elias Date: Thu, 16 Jul 2026 16:43:32 +0200 Subject: [PATCH] docs: add winget python one-liner to Windows install block (#310) The coli CLI and openai_server.py need a real python3 interpreter, but a fresh Windows resolves 'python' to the Microsoft Store alias stub (#198). Document the winget one-liner as the interim fix suggested in #310 until the CLI port lands. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2e22048..4484d28 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,11 @@ GCC 16.1.0 (x86_64-ucrt-posix-seh). scoop install mingw-winlibs # portable, no shell needed # or: pacman -S mingw-w64-x86_64-gcc make # via MSYS2 +# Python (needed by the `coli` CLI and API server). A fresh Windows resolves +# `python` to a Microsoft Store alias stub that opens the Store instead of +# running anything (#198) — installing the real interpreter replaces the stub: +winget install -e --id Python.Python.3.12 + # Build (from c/ directory): make glm.exe # GLM-5.2 engine (static, no DLL dependencies) make olmoe.exe # OLMoE engine (same shims)