summaryrefslogtreecommitdiff
path: root/docs/howto/outputting-pdf.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-04-22 17:18:14 +0000
committerClaude Paroz <claude@2xlibre.net>2012-04-22 17:18:14 +0000
commitd93b2a8d8d397ae2d85986414870d46c30a6258f (patch)
tree90f67bc414f186e5e3d659cf25840ad94ba3e63c /docs/howto/outputting-pdf.txt
parentbc8b9bd438d0b8f68ef14a5ecc81326fd7447edf (diff)
Fixed #18186 -- Fixed ReportLab Web site links. Thanks pablog for the report and the initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17928 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/howto/outputting-pdf.txt')
-rw-r--r--docs/howto/outputting-pdf.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/howto/outputting-pdf.txt b/docs/howto/outputting-pdf.txt
index 538b6172cf..a30b10f7b5 100644
--- a/docs/howto/outputting-pdf.txt
+++ b/docs/howto/outputting-pdf.txt
@@ -14,14 +14,20 @@ For example, Django was used at kusports.com_ to generate customized,
printer-friendly NCAA tournament brackets, as PDF files, for people
participating in a March Madness contest.
-.. _ReportLab: http://www.reportlab.org/oss/rl-toolkit/
+.. _ReportLab: http://www.reportlab.com/software/opensource/rl-toolkit/
.. _kusports.com: http://www.kusports.com/
Install ReportLab
=================
-Download and install the ReportLab library from http://www.reportlab.org/oss/rl-toolkit/download/.
+Download and install the ReportLab library from
+http://www.reportlab.com/software/opensource/rl-toolkit/download/.
The `user guide`_ (not coincidentally, a PDF file) explains how to install it.
+Alternatively, you can also install it with ``pip``:
+
+.. code-block:: bash
+
+ $ sudo pip install reportlab
Test your installation by importing it in the Python interactive interpreter::