From a1833021c5f8afaae4757c527a1aef5a9e5b5be3 Mon Sep 17 00:00:00 2001 From: Kamil <31224592+kamilswiec@users.noreply.github.com> Date: Tue, 16 May 2023 19:11:54 +0300 Subject: [PATCH] docs: mention enabled venv in virtualenvs.create configuration (#7608) --- docs/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 7966750b230..1fb21e38461 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -279,9 +279,9 @@ Use parallel execution when using the new (`>=1.1.0`) installer. Create a new virtual environment if one doesn't already exist. -If set to `false`, Poetry will not create a new virtual environment. If it detects a virtual environment -in `{cache-dir}/virtualenvs` or `{project-dir}/.venv` it will install dependencies into them, otherwise it will install -dependencies into the systems python environment. +If set to `false`, Poetry will not create a new virtual environment. If it detects an already enabled virtual +environment or an existing one in `{cache-dir}/virtualenvs` or `{project-dir}/.venv` it will +install dependencies into them, otherwise it will install dependencies into the systems python environment. {{% note %}} If Poetry detects it's running within an activated virtual environment, it will never create a new virtual environment,