From e2fd46bced1b028fc3e926cb3c1456aeae0e5f81 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 2 Jul 2024 16:38:10 -0700 Subject: [PATCH] Fix a fypo in the FAQ --- docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index a0f7bd3..b7b0e9b 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -53,6 +53,6 @@ If you're using [pyenv](https://github.com/pyenv/pyenv) to manage your Python ve ## How do I disable the automatic search/usage of the `.venv` virtual environment? -If you look at the [diagram of how the Launcher chooses what Python interpreter/environment to use](index.md#diagram-of-how-the-python-launcher-selects-a-python-interpreter), you will notice that the `.venv` virtual environment is only selected if you **don't** specify a verison restriction, e.g. `py -3` disables the search. +If you look at the [diagram of how the Launcher chooses what Python interpreter/environment to use](index.md#diagram-of-how-the-python-launcher-selects-a-python-interpreter), you will notice that the `.venv` virtual environment is only selected if you **don't** specify a version restriction, e.g. `py -3` disables the search. The thinking behind this is that if you want a specific Python version then you aren't interested in a specific virtual environmen., Thus the search for `.venv` is skipped when **any** specific version is requested.