GoRapid Blog

Stories from people who build @GoRapid

Blog categories
  • Web Development

tags
  • @Python
  • @Django

Django Tutorial

25 September:

Django is a Free and Open Source Web Framework which is written in Python. It Follows the Model View Template(MVT) architectural Pattern and it is maintained by Django Software Foundation(DSF).
How to install Django:-Make Sure Python is already installed in our system.To check the version-'python3 --version',then install django by using pip by 'pip install django' command and then run this command for installing the Django 'python -m pip install Django'.To Check the version of Django from 'python -m django --version'
How to create Django Project:-Once we installed Django in our system,we will get 'Django-admin' command line tool,which can be used to create our Django Project.To Create the project we run the following command 'django-admin startproject projectname'.After that we check our Django Project Works by 'python manage.py runserver' this command.
How to Create The App in Django Project:-To Create the app we have to run 'python manage.py startapp appname' this command.

Django Tutorial

25 September:

Django is a Free and Open Source Web Framework which is written in Python. It Follows the Model View Template(MVT) architectural Pattern and it is maintained by Django Software Foundation(DSF).
How to install Django:-Make Sure Python is already installed in our system.To check the version-'python3 --version',then install django by using pip by 'pip install django' command and then run this command for installing the Django 'python -m pip install Django'.To Check the version of Django from 'python -m django --version'
How to create Django Project:-Once we installed Django in our system,we will get 'Django-admin' command line tool,which can be used to create our Django Project.To Create the project we run the following command 'django-admin startproject projectname'.After that we check our Django Project Works by 'python manage.py runserver' this command.
How to Create The App in Django Project:-To Create the app we have to run 'python manage.py startapp appname' this command.