django-downloadview/INSTALL

45 lines
978 B
Text
Raw Normal View History

############
Installation
############
`django-downloadview` project is open-source, published under BSD license.
See :doc:`/about/license` for details.
.. note::
If you want to install a development environment, please see :doc:`/dev`
documentation.
System requirements:
* Python 2.7
Install the package with your favorite Python installer. As an example, with
pip:
.. code:: sh
pip install django-downloadview
2013-04-11 13:02:45 +00:00
.. note::
Since version 1.1, django-downloadview requires Django>=1.5, which provides
StreamingHttpResponse.
There is no need to register this application in your Django's
``INSTALLED_APPS`` setting.
Next, you'll have to setup some download view(s). See :doc:`demo project
<demo>` for examples, and :doc:`API documentation <api/django_downloadview>`.
Optionally, you may setup additional :doc:`server optimizations
<optimizations/index>`.
.. rubric:: Notes & references
.. seealso::
* :doc:`/settings`
* :doc:`/about/changelog`