From 6f33a8aeba0833dd3cb34714384689166b269118 Mon Sep 17 00:00:00 2001 From: Bernhard Sirlinger Date: Sat, 23 Mar 2024 09:59:20 +0100 Subject: [PATCH] feat: add defaultInterpreterPath as a vscode setting as a starting point according to docs (#1358) See: https://github.com/microsoft/vscode-python/wiki/Setting-descriptions#pythondefaultinterpreterpath --- development/vscode-example/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 development/vscode-example/settings.json diff --git a/development/vscode-example/settings.json b/development/vscode-example/settings.json new file mode 100644 index 00000000..1490b727 --- /dev/null +++ b/development/vscode-example/settings.json @@ -0,0 +1,3 @@ +{ + "python.defaultInterpreterPath": "${workspaceFolder}/frappe-bench/env/bin/python" +}