Django Environment Setup

Django is a free and open-source web framework, which uses Python as its programming language. It is based on Model View Template (MVT) architecture. A framework is a collection of all the applications needed for web development. It takes care of most of the basics of web development to don’t have to write code from scratch every time.

 It was first created in 2003 by two web programmers called Adrian Holovaty and Simon Willison. It was publicly released in 2005 under the BSD license.

The final version of Django was released in 2008, and a newly formed organization, Django Software Foundation, was announced to maintain Django in the future. 

Django's fundamental principles are scalability, re-usability, and rapid development. Django is also very popular for loose coupling, enabling every component to be independent of each other.

In this post, we will set up of developer environment for Django from the basic text editor to the layout of the application.

Text Editor

The text editor is the most basic part of any environment. It is the place where we write our code. It does not matter which text editor we use for the logic and actual computation, but we can get some great help from a good text editor. Notepad is also a text editor, but it does not provide anything like the auto-suggestion, the format for the file, etc. One of the most popular text editors in the modern era is Visual Studio Code. Visual Studio is free and easy to install. It provides many functionalities like a built-in terminal, auto-suggestion, and many more.

Installing Git

Git is an essential part of any software development. It is a version control system software. It is very useful in handling code for large projects. With Git, we can revert to previous versions of our code, share the code with other persons, collaborate with other developers, and track our work with the commits. We can download Git from this link: https://gitforwindows.org/ , click the download option, and then follow the installation process.

Command Line

Command Line is a very powerful tool for developers. Command-Line is used extensively throughout the development process. In windows, you can find it as Command Prompt. It is used in not only Django but in almost all kinds of projects and fields. As a developer, we should be aware of some basic commands on the command line.

  • Cd: Used to change directory.
  • Dir: It is used to list files in the current directory.
  • cd.. : This command takes you back to the previous directory
  • mkdir: Used to create a new directory.

Installing Python

The first step for setting up an environment for Django is to download Python. This is a programming language that is used by Django. To download Python go to the link https://www.python.org/downloads/and click on the download option. If you already have Python, you can check the version by using this command:

Python --version

After installing, to verify the installation, use this command:

Django Environment Setup

If this commands runs without an error, it means we have successfully installed Python. The next step is to install Django.

Before installing Django, we would like to create a virtual environment to store all our project files. Virtual Environments are very useful. They help to keep separate versions of a module for different projects without messing them up. To install the virtual environment, execute this command in your terminal or command prompt.

pip install virtualenv
Django Environment Setup

After creating the virtual environment, we want to create and activate this environment to use it. To create the virtual environment, go to the directory in which you want to create the environment and then type the command:

Virtualenvmyenv	

This will create a new directory named myenv in your current directory. To activate this virtual environment we just created, use the command below:

Myenv\Scripts\activate

If the environment is activated, we can see the environment name on the left side of the console.

Django Environment Setup

Django Installation

After successfully creating and activating the environment, the next step is to install Django. The easiest way to install Django is by using the python package pip. To install Django run this command in your command-line interface python –  m pip install Django.

Django Environment Setup

To verify if Django is correctly installed in your local machine or not, execute the following command in the Python console:

Import Django
Django Environment Setup

If this command does not show any error and Django is perfectly installed on your computer, we can check the version of the Django installed by running the below code in the python console.

Print(Django.get_version())

The above command will print the version number of Django.

To start creating the project, go to the directory where you want to create your project and run the following command in your command prompt.

django-adminstartprojectmyproject

This will create a project folder in which you can create the files for your apps.  The structure of this directory is:

  • manage.py
  • My project folder
    • __init__.py
    • Settings.py
    • Urls.py
    • Wsgi.py
    • Asgi.py

Now our project is ready to start the development server navigate to the project directory by cd myproject.

python manage.py runserver

The output of this command will be something like this in the terminal:

Performing system checks...
0 errors found
January 08, 2020 - 15:50:53
Django version 1.8, using settings 'myproject.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C

This output confirms that we have done our first project successfully and have started the development server. Go to the above URL to see the default homepage.

Django Environment Setup

Related Topics

Django Installation

Django Installation Django development environment consists of installing and setting up Python, Django, and a Database System since Django deals with a web application. Below the statement will guide you through installing Python 3.8.0 and...

2 minutes read.

Creating View in Django

Creating View in Django    Django views are a key component of the frameworkbased applications.We are using Python function or class at their simplest, which takes up a web query and returns a web response.Views are used to get objects from the server, change objects if needed, render types, return HTML, and much more. Class Based View and Function based Django has two types of views: views based on functions (FBVs) and views based on class (CBVs).Initially, Django began with only FBVs, but then introduced CBVs as a way to model features so we didn't have to write boilerplate (i.e. the same software) code again and again.CBVs would be a way to increase efficiency, so you don't have to write as much code as you can. CBVs are classes of Python at their heart. Django ships with a range of "model" CBVs with pre-configured features that can be reused and often expanded.Then helpful names are given to these classes that explain what kind of functionality they provide.These are often referred to as "universal views" because they provide solutions to specific needs. The classes have a journal View function, or "view" for short, is simply a Python program that uses a web query and returns a web response. This response may include the HTML content of a web page, or a redirect, or a 404 error, or an XML file, or an image, etc. Example: You use a view to create a web page, remember that you need to connect a view to a URL to see it as a web page. Simple View We will create a simple view in myapplication to say “Welocome to django application” See the following view – from django.http import HttpResponse ...

4 minutes read.

Best Django courses

In this tutorial, we will see various courses in python Django available on the internet. Django has become popular these days, so courses on it are also increasing day by...

7 minutes read.

Django Filters

Django is a high-level python based web framework. Django is mostly used as a backend engine for websites. Nowadays, every website communicates to a database to fetch all the information...

3 minutes read.

Django CMS

Django is one of the most popular open-source Python web development framework. Developers use Django to build a website from scratch. Like WordPress, Django CMS is also a Content Management...

9 minutes read.

Django MVT

 MVT(Model View Template) MVT means Model View Template is a software design pattern The View is used to implement the business logic and to communicate with a model for data transmission and to...

2 minutes read.

Django All Auth

For any web application, user registration and authentication are the essential parts. In Django, there are several applications like django-registration-redux to perform these tasks, but the major drawback is that...

6 minutes read.

Django Create Project

Django is an open-source free to use web framework which is based on Python. Django uses Model-View-Template as its architecture. The final version of Django was released in 2008. Django...

4 minutes read.

Django Class Based Views

Class-based views were developed to solve the problem of customizing function-based generic views. We can arrange our view code Object-Oriented by using class views. Class-based views do more than function-based...

3 minutes read.

Django Frontend

Django Django is a framework that can make web applications more accessible and faster. Django is an open-source collection of python libraries, and Django can be used for both the front...

3 minutes read.

Features of Django

Features of Django Offers High Security:- Django is super secure. To prove the feature, we can always take examples of lots of websites which are present worldwide and possess huge traffic. Django is secure because it covers the...

3 minutes read.

Django Create App

Django is a Python-based web framework that is based on the Model View Template architecture. In this post, we will go through the installation and setup for our first Django...

4 minutes read.

Django Channels

Channels is a project that uses Django and adds some functionalities beyond the traditional HTTP by using WSGI and ASGI.  We can use both synchronous and asynchronous requests with ASGI...

5 minutes read.

How to create an app in Django

Create an application in Django Django is famous for its unique and fully managed application structure. For each functionality, an application can be created as a completely independent module. This article will take...

2 minutes read.

Django Environment Setup

Django is a free and open-source web framework, which uses Python as its programming language. It is based on Model View Template (MVT) architecture. A framework is a collection of...

4 minutes read.

Django vs Laravel

Django Overview Django is a Python Programming Open Source framework for web development. It was released in 2008 and was developed by two web developers named Adrian Holovaty and Simon Willison....

4 minutes read.

Django CSRF

Django is a high-level python based web framework. Django is open source and free to use for all. Django provides many features to web developers like scalability, security, rapid development,...

4 minutes read.

What is Django?

What is Django? Django is a free and open-source web application framework, written in Python. A web framework is a set of components that help you develop an easier and faster website. When we...

3 minutes read.

Django and React

This article will discuss the overview of Django and React, their advantages, applications, and most importantly, how to implement react in Django. What is Django? Django is a free and open-source web...

6 minutes read.

Django Framework

Django is a popular high-level open-source web development Python framework based on follows Model View Template (MVT) architecture that allows rapid development. It. It provides common functionality like Admin Interface,...

3 minutes read.