Django day-1

Pramod Ray
1 min readOct 3, 2019

Installation : Django installation is very easy follow the following steps:

. First Create virtual Environment

Create virtual Environment
> python3
>>> import pytz
>>> exit()
> python3 -m venv .venv
> python3
>>> bin
>>> exit()
> source .venv/bin/activate
> pip3 install request
> import request
> deactivate
> check freeze
> pip3 freeze
> source .venv/bin/activate
> pip3 freez

. Install django

> pip install django
> pip3 freeze
> django-admin startpoint hello-world!
> cd hello-world!

The development server:

$python manage.py runserver

--

--