Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Django 1.5 using pip? [closed]

How to install Django 1.5 ? pip install django==1.5 not working.

Is Django1.5 a stable version?

like image 348
Julie Avatar asked Feb 19 '13 08:02

Julie


1 Answers

No, as at 19 feb 2013 the latest version is 1.4.3. See the docs.

If you do want 1.5 you can get it from github -

pip install -e git+https://github.com/django/[email protected]#egg=django

UPDATE

The latest current version (1.5.1 as at 7th June 2013) can be installed with

pip install django
like image 174
Aidan Ewen Avatar answered Sep 18 '22 02:09

Aidan Ewen