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 <noreply@anthropic.com>
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
.venv/
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
.ipynb_checkpoints/
|
||||||
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python3",
|
||||||
|
"python.terminal.activateEnvironment": true,
|
||||||
|
"jupyter.notebookFileRoot": "${workspaceFolder}"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user