Fix VS Code interpreter path to use relative path

${workspaceFolder} is not expanded in python.defaultInterpreterPath;
use a relative path instead.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 12:27:41 -08:00
parent da28b6a265
commit 612d8c11e2

View File

@@ -1,5 +1,5 @@
{ {
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python3", "python.defaultInterpreterPath": ".venv/bin/python3",
"python.terminal.activateEnvironment": true, "python.terminal.activateEnvironment": true,
"jupyter.notebookFileRoot": "${workspaceFolder}" "jupyter.notebookFileRoot": "${workspaceFolder}"
} }