Nginx Gunicorn Django Ubuntu
Published 12 May 2013
First all of all, you have to set up a virtualenv. To do this, you need to have virtualenv installed
$ pip install virtualenv
Set up your environment, the –no-site-packages mean that this environment is totally isolated from your site-packages installed on your computer.
$ virtualenv venv --no-site-packages
$ cd venv
$ source activate
By Fredrik Carlsen