From 1f0a62a8f896d81927939dad0d25df9faa94b936 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Fri, 2 Oct 2015 14:51:18 +0000 Subject: [PATCH] updated virtualenv sectio to remove duplicates --- docs/dev/env.rst | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/dev/env.rst b/docs/dev/env.rst index 391f230..9405e25 100644 --- a/docs/dev/env.rst +++ b/docs/dev/env.rst @@ -223,13 +223,7 @@ Interpreter Tools Virtual Environments -------------------- -A Virtual Environment is a tool to keep the dependencies required by different -projects in separate places, by creating virtual Python environments for them. -It solves the "Project X depends on version 1.x but, Project Y needs 4.x" -dilemma, and keeps your global site-packages directory clean and manageable. - -For example, you can work on a project which requires Django 1.3 while also -maintaining a project which requires Django 1.0. +Virtual Environments provide a powerful way to isolate project package dependencies. This means that you can use packages particular to a Python project without installing them system wide and thus avoiding potential version conflicts. To start using and see more information: `Virtual Environments `_ docs.