From 61bfdc96e3e224804f9ece902775bfd9da6c7052 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Fri, 11 Sep 2026 08:49:19 +0200 Subject: [PATCH] Correct python path for create_ai command --- .vscode.d/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode.d/tasks.json b/.vscode.d/tasks.json index 7a0c7e75..1464b47a 100644 --- a/.vscode.d/tasks.json +++ b/.vscode.d/tasks.json @@ -31,10 +31,10 @@ "label": "Create AI layer", "detail": "Export model/model.py for the NPU in cmsis-executorch.cbuild-mlops.yml and write ai_layer/ (run a CMSIS build or 'cbuild setup' first)", "type": "shell", - "command": "python3", + "command": "${workspaceFolder}/.venv/bin/python", "args": ["create_ai_layer.py", "cmsis-executorch.cbuild-mlops.yml"], "windows": { - "command": "python" + "command": "${workspaceFolder}\\.venv\\Scripts\\python.exe" }, "options": { "cwd": "${workspaceFolder}"