Skip to content

It is a Documentation For those who are Totally New To Django And Did not know How to Setup and Install Django on Windows. The Preliminary Requirements and Steps For Installation are Discussed in the Installation Guide.

Notifications You must be signed in to change notification settings

MukeshDubey1420/Django-Setup-And-Installation-Guide

Repository files navigation

Django Tutorial

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. Don’t repeat yourself (DRY programming) is an integral part of Django principles. It’s free and open source.

For refernce u can also Follow.

A Framework is a collection of libraries best suited for a particular kind of software and an approach on how things should be done.

  • Django was designed to help developers take applications from concept to completion as quickly as possible.
  • Django takes security seriously and helps developers avoid many common security mistakes.
  • Some of the busiest sites on the Web leverage Django’s ability to quickly and flexibly scale.

Remember:- There are two very important things you need to do to get started with Django:

  1. Install Django (obviously); and
  2. Get a good understanding of the Model-View-Controller (MVC) design pattern.
  • The first, installing Django, is really simple and The second is just as important, especially if you are a new programmer or coming from using a programming language that does not clearly separate the data and logic behind your website from the way it is displayed .Because understanding MVC will make understanding Django so much easier.
Django follows the MVC pattern closely, Django is often referred to as an MTV framework. In the MTV development pattern:
  • IN MVC Pattern ,When talking about applications that provides UI (web or desktop), we usually talk about MVC architecture. And as the name suggests, MVC pattern is based on three components: Model (Data that represent the system), View ( Presentation of the data), and Controller (The intelligence and interface between Model and View1, this could be the affected by user input, default state of the application, etc).

  • Whereas in MTV Pattren, The Model-View-Template (MVT) is slightly different from MVC. In fact the main difference between the two patterns is that Django itself takes care of the Controller part (Software Code that controls the interactions between the Model and View), leaving us with the template. The template is a HTML file mixed with Django , called as Django Template Language (DTL). M = Model (Data that represent the system), V = View ( Specifically the view functions, the intelligence and interface between the Model and Template. Similar to the concept of "view" from SQL space.), T = Template ( a Django Template which provide facility to present data)

The following diagram illustrates how each of the components of the MVT pattern interacts with each other to serve a user request −

DjangoMVTPattern

The developer Just provides the Model, the view and the template then just maps it to a URL and Django does the magic to serve it to the user.

Installing The Django Framework-->

Before you can start learning how to use Django, you must have to setup the following needs.
  1. Install Python. ( Django is written in 100% pure Python code, so you'll need to install Python on your system. Latest Django version requires Python 2.6.5 or higher Version ,Ignore it if already installed.)

  2. Install a Python Virtual Environment. (Optional but still U have to Prefer it for better convinience.And To prevent from Conflicts.)

  3. Install Django.(Compulsary)

Installing Python-->

  • Django itself is written in Python, so the first step in installing the Django framework, is to make sure you have Python installed In your System. Python Versions Compatible Are 2.7, 3.4, 3.5 and 3.6.

Installing a Python Virtual Environment-->

All of the software on your computer operates interdependently – each program has other bits of software that it depends on (called dependencies) and settings that it needs to find the files and other software it needs to run (call environment variables).

When you are writing new software programs, it’s possible (and common!) to modify dependencies and environment variables that your other software depends on. This can cause numerous problems, so should be avoided.

A Python virtual environment Rescues or solves this problem by wrapping all the dependencies and environment variables that your new software needs into a file system separate from the rest of the software on your computer.

Various Steps are there For Implementing Virtual Environment in our project:-
  • Installing Virtual Environment(pip install virtualenv).
  • Connect our project with our Environment(virtualenv My_Project_Env it creates a directory basically a folder with the name My_Project_Env. Make sure create this virtual environment Directory in our preferred development folder.)
  • Set Project Directory(bind our virtualenv with our current working directory.)
  • activate(activate this environment by moving into Virtual Environment Directory via cmd window, Inside the Script folder ,Run the activate command For ex:-C:\Users\user\Documents>My_Project_Env\Scripts\activate ).
  • Deactivate(type ‘deactivate’ to deactivate your environment.)
Note:- Did Not Forget To configure ur python Interpretur To Virtual environment interpretur. You can set it by moving into settings option in your IDLE.

The virtual environment tool in Python is called virtualenv and we install it from the command line using pip:

pip install virtualenv

See The Output on Command Window :

pip Virtual Environment

In Case You Already Installed :

Already installed

Create an Environment with virtualenv-->

  • The next step is to create the environment with virtualenv:

virtualenv My_Project_Env

its all depend upon u that what do u want to set the name of ur virtual environment.

Activating environment:

C:\Users\user\Documents>My_Project_Env\Scripts\activate
(My_Project_Env) C:\Users\user\Documents>

Now install the packages and Libraries U wanna To use in your project Make sure before coding u must have to activate your virtual environment.and if u install a library without Activating the environment it will be installed it on ur system not on environment.So make sure to activate the environmentbefore installing the supportive library

Installing Django

Now that we have Python and are running a virtual environment, installing Django is super easy, just type the command:

pip install django

Note:- This will instruct pip to install Django into your virtual environment. Your command output should look like this:

pip install Django

Or if u Already installed It it shows like :

pip install Django Already installed

Starting a Project-->

Once you’ve installed Python, you can take the first step in developing a Django application by creating a project. A project is a collection of settings for an instance of Django. If this is your first time using Django, you’ll have to take care of some initial setup.

Remember :-I am assuming at this stage you are still running the virtual environment from the previous installation step. "If not, you will have to start it again with virtualenvFolder\Scripts\activate." Also make sure you are in the mysite_project directory.`

  • From your virtual environment command line, run the following command:

django-admin startproject mysite

This command will automatically create a mysite directory in your project directory as well as all the necessary files for a basic.:

Django project

Project Structure :-

  • The “myproject” folder is just your project container, it actually contains two elements −

  • manage.py − This file is kind of your project local django-admin for interacting with your project via command line (start the development server, sync db...). To get a full list of command accessible via manage.py you can use the code −

python manage.py help provides list of command accessible via manage.py .(Try to run it.)

  • The “myproject” subfolder − This folder is the actual python package of your project. It contains four files −
  • __init__.py− Just for python, treat this folder as package.

  • settings.py − As the name indicates, your project settings.

  • urls.py − All links of your project and the function to call. A kind of ToC of your project.

  • wsgi.py − If you need to deploy your project over WSGI (Web Server Gateway Interface).

Setting Up a Database-->

  • Django includes a number of applications by default (For Example: The admin program and user management and authentication).
  • Some of these applications make use of at least one database table, so we need to create tables in a database before we can use them. To do that, move into your Project Directory i.e. mysite folder created in the last step (type cd mysite at the command prompt) and run the following command:

python manage.py migrate

The migrate command looks at all your available models and creates tables in your database for whichever tables don’t already exist, as well as optionally providing much richer schema control.Or simply we can say that The migrate command creates a new SQLite database and any necessary database tables according to the settings file created by the startproject command (more on the settings file later in the book). If all goes to plan,

you’ll see a message for each migration it applies:

Migrations

The Development Server-->

Let’s verify your Django project works. Change into the outer mysite directory, if you haven’t already, and run the following commands:

python manage.py runserver

You’ll see the following output on the command line:

Runserver

  • You’ve started the Django development server, a lightweight Web server written purely in Python. Django’s creators included this with Django so you can develop things rapidly, without having to deal with configuring a production server – such as Apache – until you’re ready for production.

  • Now’s a good time to note: Don't use this server in anything resembling a production environment. It’s intended only for use while developing.

  • Now that the server’s running, visit http://127.0.0.1:8000/ with your Web browser(On Local Host Port 8000, U will change the port According to ur need).

Note :- Changing the port

  • By default, the runserver command starts the development server on the internal IP at port 8000.

  • If you want to change the server’s port, pass it as a command-line argument. For instance, this command starts the server on port 8080:

python manage.py runserver 8080

You’ll see a “Welcome to Django” page in pleasant, light-blue pastel

Welcome screen

It Worked!....Congratulations on Your First Django-Powered page.

About

It is a Documentation For those who are Totally New To Django And Did not know How to Setup and Install Django on Windows. The Preliminary Requirements and Steps For Installation are Discussed in the Installation Guide.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published