Tools of the Modern Python Hacker
You have a Django project that you want to do automated deployment to both your staging and production environment (Fabric). The project has several dependencies the need to be exactly met at deploy time (pip), and the remote production environment disallows global site-package installation, so you need an isolated environment to install all dependencies (virtualenv).
via clemesha.org