InstallΒΆ
Install with the pip package manager.
$ python -m venv myvenv
$ source myvenv/bin/activate
(myvenv)$ pip install django
(myvenv)$ pip install django-markdowny
After creating a project, add markdowny to INSTALLED_APPS in settings.py.
INSTALLED_APPS = [
# ...
'markdowny',
]
Remember to update your requirements.txt file. In your project directory:
(myvenv)$ pip freeze > requirements.txt