From 2a7a5facab069f72c4ad868f89fdf463748a2f32 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 19 Mar 2017 21:18:15 -0400 Subject: [PATCH] document WORKON_HOME --- docs/advanced.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/advanced.rst b/docs/advanced.rst index 5d0010b0..c6eb91cc 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -183,6 +183,16 @@ will detect it. - ``PIPENV_MAX_DEPTH`` — Set to an integer for the maximum number of directories to search for a Pipfile. + +☤ Custom Virtal Environment Location +------------------------------------ + +Pipenv's underlying ``pew`` dependency will automatically honor the ``WORKON_HOME`` environment +variable, if you have it set — so you can tell pipenv to store your virtual environments wherever you want, e.g.:: + + export WORKON_HOME=~/.venvs + + ☤ Testing Projects ------------------