Added Paragraph on virtualenv and virtualenvwrapper

This commit is contained in:
Johannes Seitz
2011-10-09 21:03:25 +02:00
parent f233533e03
commit 03d485b40e
+15
View File
@@ -85,11 +85,26 @@ Interpreter Tools
virtualenv
----------
Virtualenv 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.
virtualenvwrapper
-----------------
Virtualenvwrapper makes virtualenv a pleasure to use by wrapping the command line API with a nicer CLI.
::
pip install virtualenvwrapper
Put this into your `~/.bash_profile` (Linux/Mac) file:
::
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
This will prevent your virtualenvs from relying on your (global) site packages directory, so that they are completely separate..
Other Tools
:::::::::::