django-markdownx/docs-src/installation.md
2018-11-16 23:02:06 +01:00

33 lines
798 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Installation
## Using PIP
Django MarkdownX may be installed directly using Python Package Index (PyPi):
```bash
python3 -m pip install django-markdownx
```
## From the source
Should you wish to download and install it using the source code, you can do as follows:
!!! note
Make sure you have activated your virtual environment if youre using one.
We start off by downloading the source code from GitHub and navigate to the downloaded directory:
```bash
git clone https://github.com/adi-/django-markdownx.git
cd django-markdownx/
```
Install the package.
```bash
python3 setup.py install
```
!!! tip
You can replace ``python3`` with ``python`` or any of ![](https://img.shields.io/pypi/pyversions/django-markdownx.svg) if
you have multiple versions installed on your machine: