DEV Community

Debbie
Debbie

Posted on

How to install Django

What is Django?
It is a web-based Python program that enables you to easily build powerful web applications. Django is an open-source framework for backend web applications based on Python — one of the top web development languages. To make use of Django, it must be first installed and a virtual environment will be created as well.
1.cd into your project folder

  1. create the virtual environment (env/scripts/activate) 3.pip install Django
  2. Then go ahead to create your project and app

Benefits of using Django:

  1. Django is highly secure.
  2. It creates default admin panel.
  3. You can create a SEO using Django.
  4. It offers detailed documentation.

Top comments (0)