From 6e1c1334461a7b85d35cfe507071bec8e1aad6d5 Mon Sep 17 00:00:00 2001 From: kamilswiec Date: Sun, 5 Mar 2023 16:37:54 +0200 Subject: [PATCH] docs:mention VIRTUAL_ENV in virtual_env.create configuration --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index cc477f22609..fe7bed18b0a 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -271,8 +271,8 @@ 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. +in `{cache-dir}/virtualenvs` or `{project-dir}/.venv` or in `VIRTUAL_ENV` 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,