diff --git a/README.rst b/README.rst index 7fd74fa..48e71f7 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,10 @@ Quickstart ---------- 1. Include ``django-easy-pdf``, ``xhtml2pdf>=0.0.6`` and ``reportlab>=2.7,<3`` - in your ``requirements.txt`` file. + in your ``requirements.txt`` file. If you are on Python 3 you need to install + the latest version of Reportlab and the beta version of xhtml2pdf:: + + $ pip install --pre xhtml2pdf 2. Add ``easy_pdf`` to ``INSTALLED_APPS``. diff --git a/docs/installation.rst b/docs/installation.rst index 2080d21..73a9b0e 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -7,3 +7,8 @@ to your ``requirements.txt`` file or install it directly from the command line b $ pip install django-easy-pdf $ pip install "xhtml2pdf>=0.0.6" "reportlab>=2.7,<3" + +If you are on Python 3 you need to install the latest version of Reportlab +and the beta version of xhtml2pdf:: + + $ pip install --pre xhtml2pdf