From 6b491c9469af9ba9f8277a01142b6a1b8975f990 Mon Sep 17 00:00:00 2001 From: Harry Moreno Date: Tue, 9 Feb 2021 14:33:42 -0500 Subject: [PATCH 1/2] windows, invoke python as py when following the guide the command no longer works, you need to use the `py` command instead https://github.com/microsoft/vscode-docs/issues/3198#issuecomment-554361971 --- docs/starting/install3/win.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/starting/install3/win.rst b/docs/starting/install3/win.rst index db78d9240..ce620aa31 100644 --- a/docs/starting/install3/win.rst +++ b/docs/starting/install3/win.rst @@ -33,7 +33,7 @@ All supported versions of Python 3 include pip, so just make sure it's up to dat .. code-block:: doscon - python -m pip install -U pip + py -m pip install -U pip ***************************** From 04e824d3f28622fb50b1e9bd9137da38e8663615 Mon Sep 17 00:00:00 2001 From: Default Directory <160867072+ALMHAALIRAQI@users.noreply.github.com> Date: Mon, 15 Apr 2024 15:04:02 +0300 Subject: [PATCH 2/2] Create settings.json --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..8a8b2a98d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "vscode-aiconfig.pythonInterpreter": "C:\\Python312\\python.exe" +} \ No newline at end of file