From da28b6a26562b56bbcd3e866aee1d1b8d47defb4 Mon Sep 17 00:00:00 2001 From: dadams Date: Wed, 25 Feb 2026 12:25:44 -0800 Subject: [PATCH] Add venv interpreter config and gitignore VS Code workspace settings point to project-local .venv so the correct Python interpreter is auto-selected on open. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 4 ++++ .vscode/settings.json | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..44dcd9f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.venv/ +__pycache__/ +*.pyc +.ipynb_checkpoints/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6c9c70f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python3", + "python.terminal.activateEnvironment": true, + "jupyter.notebookFileRoot": "${workspaceFolder}" +}