Install Django on Ubuntu

Install Django on Ubuntu

November 18, 2020 / Nirav Shah

Django is an Open-Source application system written in Python. We will see how we can install Django on a Ubuntu-based system with some fairly simple commands.

Install Django using Apt Manager

  $ sudo apt-get install python3-django
  $ sudo apt-get install python-django

It will install a stable version of Django on your system.

Install Django using PIP

$ sudo apt-get install python3-pip

Now install Django using PIP

$ pip3 install django

Install Django with Github

Utilize this technique on the off chance that you need to introduce an improvement form as opposed to a steady Version. To introduce Django from Github you should introduce PIP and Git both. If it’s not too much trouble use the accompanying commands to install Django from Github.

$ sudo apt-get install python3-pip
$ sudo apt-get install git

Create a folder name of django_repo in your home directory.

$ mkdir ~/django_repo

Now clone the Django repository to your local

$ git clone git://github.com/django/django

Install Virtualenv to create a virtual environment

$sudo apt install virtualenv -y

Create and activate Virtual Environment.

$ virtualenv venv
$ source ./venv/bin/activate

Now install Django using the PIP command.

$ pip install -e ~/django_repo

So this is how we can install Django in two different ways on an Ubuntu system or server.

Talk to AWS Certified Consultant

    Spread Love By Sharing:

    Let Us Talk About Your AWS Development Requirements

    Have queries about your AWS project ideas and concepts? Please drop in your project details to discuss with our AWS experts, professionals and consultants.

    • Swift Hiring and Onboarding
    • Experienced and Trained AWS Team
    • Quality Consulting and Programming
    Let’s Connect and Discuss Your Project