2

I am trying to install latest Django version 2.0.1 as mentioned on https://www.djangoproject.com/download/ that this is the latest official release but when I run command pip install Django==2.0.1 I get error. Error is shown in Image below. How can I install latest version?

enter image description here

Umair Aamir
  • 1,624
  • 16
  • 26

1 Answers1

2

Your python version is too old. From official docs:

Django 2.0.1 requires Python: >=3.4

The latest version for python 2.7 is Django 1.11.9.

You can find all available versions and their requirements here.

Laurynas Tamulevičius
  • 1,479
  • 1
  • 11
  • 25