django-eav2/docs/source/getting_started.rst
2018-07-23 16:27:12 +00:00

45 lines
687 B
ReStructuredText

Getting Started
===============
Installation
------------
You can install **django-eav2** from PyPI, git or directly from source:
From PyPI
^^^^^^^^^
::
pip install django-eav2
With pip via git
^^^^^^^^^^^^^^^^
::
pip install git+https://github.com/makimo/django-eav2@master
From source
^^^^^^^^^^^
::
git clone git@github.com:makimo/django-eav2.git
cd django-eav2
python setup.py install
To uninstall::
python setup.py install --record files.txt
rm $(cat files.txt)
Configuration
-------------
After you've installed the package, you have to add it to your Django apps::
INSTALLED_APPS = [
# ...
'eav',
# ...
]