InstallΒΆ

Install with the pip package manager.

$ python -m venv myvenv
$ source myvenv/bin/activate
(myvenv)$ pip install django
(myvenv)$ pip install django-evade

After creating a project, add evade to INSTALLED_APPS in settings.py.

INSTALLED_APPS = [
    # ...
    "evade",
]

Remember to update your requirements.txt file. In your project directory:

(myvenv)$ pip freeze > requirements.txt