Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

installing django 1.5(development version) in virtualenv

Tags:

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?

like image 328
Andreaw Froyo Avatar asked Sep 09 '12 13:09

Andreaw Froyo


2 Answers

Django 1.5 was released!. To install it use:

pip install django

To install the latest development version without git, on your own risk use:

pip install https://github.com/django/django/zipball/master

Django 1.5 Release Candidate 2 (RC2) was released, and it can be installed using pip without installing git:

pip install https://www.djangoproject.com/download/1.5c2/tarball/

like image 93
Udi Avatar answered Oct 17 '22 07:10

Udi


Directly from the github repository.

pip install git+git://github.com/django/[email protected]
like image 44
Vladislav Mitov Avatar answered Oct 17 '22 09:10

Vladislav Mitov