From e734e0f81795c537af7d50539e305d57b6b10ee4 Mon Sep 17 00:00:00 2001 From: Bernhard Sirlinger Date: Mon, 12 Feb 2024 03:25:30 +0100 Subject: [PATCH] feat: add defaultInterpreterPath as a vscode setting as a starting point according to docs 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" +}