Atinesh
Atinesh

Reputation: 1910

Trouble installing Django 2.x in Ubuntu 18

I am trying to install the latest Django in Ubuntu 18, But I am facing some weird troubles. I came across 2 ways to install it.

Method 1: If I use below command then the previous version of Django is getting installed

$ sudo apt-get install python3-django
$ django-admin --version
1.11.11

Method 2: If I install it using pip then on checking the version I see an error as it's not installed though I can remove it successfully

$ pip3 install Django==2.1.2
$ django-admin --version
Cannot find installed version of python-django or python3-django.

Can anybody help me It's very frustrating, ThankYou

Upvotes: 0

Views: 93

Answers (1)

Vaibhav Vishal
Vaibhav Vishal

Reputation: 7108

Run this in terminal to install latest stable version of Django:

pip3 install Django

Docs

Upvotes: 1

Related Questions