---
title: "Django"  
description: "Django"  
author: "Anonymous User"  
published: 2018-06-27  
updated: 2018-06-28  
canonical: https://www.mindstick.com/forum/34554/django  
category: "python"  
tags: ["python"]  
reading_time: 1 minute  

---

# Django

What is [Django](https://www.mindstick.com/articles/337468/the-pros-and-cons-of-using-django-for-web-development-projects) ? what is [Installation](https://www.mindstick.com/articles/711/php-installation-on-windows) [process](https://yourviews.mindstick.com/story/1525/7-important-factors-that-may-affect-the-learning-process) ?

## Replies

### Reply by Prakash nidhi Verma

Django is web framework of Python which allow you to quickly create web application. When you’re building a website,you create components a way to handle user authentication (signing up, signing in, signing out), a management panel for your website, forms, a way to upload files, etc.Django give you ready-made components to use.

Functionality in Django :

-It’s very easy to switch database in Django framework.

-built admin interface which makes easy to work with it.

-Django is fully functional framework.

-It has thousands of additional packages available.

-It is very scalable.

Installing Django step follow in Command Prompt :

```
python -m pip install -U pip 
```

```
pip install virtualenv 
```

```
virtualenv env_site
```

```
pip install django 
```

![Django](https://www.mindstick.com/mindstickforums/764e10c4-7254-427a-8f61-64d6f2cded80/images/2c8c98c5-0a6c-4b6e-985f-1afadbbbdcea.png)\

```
django-admin startproject mindstick_site
```

```
cd mindstick_sitecd
```

```
python manage.py runserver 
```

![Django](https://www.mindstick.com/mindstickforums/764e10c4-7254-427a-8f61-64d6f2cded80/images/f45d11ce-0aaf-4230-96ed-8c82b075133f.png)


---

Original Source: https://www.mindstick.com/forum/34554/django

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
