psaishya / Django-web-series

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Web Development Series

Welcome to the Django Web Development Series! This repository contains the prerequisite installation guide and course guide for the series, as well as the code for your reference.

##Course Structure We will be following the course structure mentioned below. Fell free to reach out to us if you have any suggestions. ./Django-Series

Prerequisites

Before you start the course, you'll need to install the following software:

Installing Python

To install Python, follow these steps:

  1. Go to the official Python website at https://www.python.org/downloads/ and download the latest version of Python for your operating system.
  2. Run the installation file and follow the instructions to install Python on your computer.
  3. Once Python is installed, you can check if it's working by opening a command prompt or terminal and running the following command:
python --version

Installing Django

To install Django, follow these steps:

  1. Open a command prompt or terminal and run the following command:
pip install Django
  1. Once Django is installed, you can check if it's working by running the following command:
django-admin --version

This should display the version number of Django that you installed.

Installing Visual Studio Code

To install Visual Studio Code, follow these steps:

Go to the official Visual Studio Code website at https://code.visualstudio.com/ and download the latest version of Visual Studio Code for your operating system.

Run the installation file and follow the instructions to install Visual Studio Code on your computer.

Once Visual Studio Code is installed, you can open it and install the necessary extensions for Django development. Open Visual Studio Code and follow these steps:

a. Click on the Extensions icon in the left-hand sidebar.

b. In the search bar, type "Python" and press Enter.

c. Click on the "Python" extension by Microsoft and click on the "Install" button.

d. In the search bar, type "Django" and press Enter.

e. Click on the "Django" extension by Baptiste Darthenay and click on the "Install" button.

Once the extensions are installed, you may be prompted to restart Visual Studio Code. After restarting, you can start using Visual Studio Code for Django development.

That's it! You now have all the software you need to start the Django Web Development Series. If you have any questions or issues with the installation, please don't hesitate to reach out to us for assistance.

About