Skip to content

patelrakesh95/djangoskillup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

1)create project directory
  cd projectname
2)change the directory to project directory
3)create virtual environment using below command.
  python -m venv venv
4)Activate virtual environment
  source venv/bin/activate
5)check pip installed or not
  pip -V
6)install Django
  python -m pip install Django
7)verify installed Django
  python
  import django
  print(django.get_version())
8)write your first django project
  django-admin startproject {project name}
9)Run Development Server
  python {project name}/manage.py runserver
10)open the link

About

Django Skillup

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published