How to install Django 1.5 ? pip install django==1.5
not working.
Is Django1.5 a stable version?
How to install Django 1.5 ? pip install django==1.5
not working.
Is Django1.5 a stable version?
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