InstallΒΆ
Install with the pip package manager.
$ mkvirtualenv myvenv -p python3
$ pip install django
$ pip install django-pygmentify
After creating a project, add pygmentify to INSTALLED_APPS in settings.py.
INSTALLED_APPS = [
# ...
'pygmentify',
]
Remember to update your requirements.txt file. In your project directory:
$ pip freeze > requirements.txt