.. _installation:

============
Installation
============

Installation is easy using ``pip`` or ``easy_install``.

.. code-block:: bash

	pip install django-formfield

or

.. code-block:: bash

	easy_install django-formfield
	
	
Add to installed apps
=====================

::

    INSTALLED_APPS = (
        ...
        formfield,
        ...
    )
