DEV Community

RedJoules
RedJoules

Posted on

Django

Django is a web framework which helps you build interactive websites using Python. With Django one can define the kind of data site needs to work with, and define the ways users can work with that data.

It’s usualy best to install Django to a virtual environment, where project can be isolated from other Python projects.

Create a virtual environment
$ python –m venv ll_env
Activate the environment (Linux and OS X)
$ source ll_env/bin/activate
Activate the environment (Windows)

ll_env\Scripts\activate
Install Django to the active environment
(ll_env)$ pip install Django

Top comments (0)