From 4ad53a49165629b843e08bdfbf634feba5cbb63a Mon Sep 17 00:00:00 2001 From: Vishal Sodani Date: Mon, 16 Feb 2015 12:48:55 +0530 Subject: [PATCH] Use virtualwrapper-win on windows --- docs/dev/virtualenvs.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/dev/virtualenvs.rst b/docs/dev/virtualenvs.rst index f68b3f5e7..73ff9eef9 100644 --- a/docs/dev/virtualenvs.rst +++ b/docs/dev/virtualenvs.rst @@ -132,16 +132,15 @@ To install (make sure **virtualenv** is already installed): (`Full virtualenvwrapper install instructions `_.) -For Windows, you can use the `virtualenvwrapper-powershell `_ clone. +For Windows, you can use the `virtualenvwrapper-win `_. To install (make sure **virtualenv** is already installed): .. code-block:: console - PS> pip install virtualenvwrapper-powershell - PS> $env:WORKON_HOME="~/Envs" - PS> mkdir $env:WORKON_HOME - PS> import-module virtualenvwrapper + $ pip install virtualenvwrapper-win + +In Windows, the default path for WORKON_HOME is %USERPROFILE%\Envs Basic Usage ~~~~~~~~~~~