installing django 1.5(development version) in virtualenv

django, python, virtualenv

Solution

Directly from the github repository.

pip install git+git://github.com/django/django.git@1.5b2

Problem

I am trying to start developing a web apps using django 1.5 but I can't figure out how to install the django 1.5 in the `virtualenv` because django 1.5 is still a development version. I've tried installing it using `easy_install` and `pip` but all I get is django 1.4 because it is the official version. Can anybody help me with this?

Original source