5

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

Is Django1.5 a stable version?

Aidan Ewen
  • 13,049
  • 8
  • 63
  • 88
Julie
  • 125
  • 2
  • 6
  • 4
    Don't know why this was voted to be closed, it really shouldn't be. Questions about `pip` and package versions seem pretty reasonable to me. – Tom Christie Feb 19 '13 at 11:29
  • pip is a software tool commonly used by most django programmers - this is about as on topic as you can get for a question tagged django - http://stackoverflow.com/faq#questions – Aidan Ewen Mar 08 '13 at 22:52

1 Answers1

6

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/django.git@1.5b2#egg=django

UPDATE

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

pip install django
Aidan Ewen
  • 13,049
  • 8
  • 63
  • 88