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?
Asked
Active
Viewed 771 times
2

Umair Aamir
- 1,624
- 16
- 26
-
1What version of pip and python? – cowbert Jan 27 '18 at 09:59
-
See this: https://stackoverflow.com/questions/15221473 – Anton vBR Jan 27 '18 at 10:04
-
Python version 2.7.10 – Umair Aamir Jan 27 '18 at 10:04
-
@UmairAamir did you solve the issue? – Laurynas Tamulevičius Jan 27 '18 at 14:23
-
Not yet, I am facing another issue while installing latest django version – Umair Aamir Jan 27 '18 at 14:24
-
Is your issue resolved? Could you close the question? – Laurynas Tamulevičius Jan 28 '18 at 01:06
-
are you getting bills if it is still open? I usually don't work in mid of night. When I'll start working again I'll check and if it is resolved I'll close it. – Umair Aamir Jan 28 '18 at 01:08
1 Answers
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