Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 1 | {% extends "layout.html" %} |
| 2 | {% set title = 'Download' %} |
| 3 | {% block body %} |
| 4 | |
| 5 | <h1>Download Python {{ release }} Documentation |
| 6 | {%- if last_updated %} (last updated on {{ last_updated }}){% endif %}</h1> |
| 7 | |
Martin v. Löwis | 1561bab | 2008-02-29 19:39:25 +0000 | [diff] [blame] | 8 | <p>Currently, the development documentation isn't packaged for download.</p> |
| 9 | |
| 10 | <!-- |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 11 | <p>To download an archive containing all the documents for this version of |
| 12 | Python in one of various formats, follow one of links in this table. The numbers |
| 13 | in the table are the size of the download files in Kilobytes.</p> |
| 14 | |
| 15 | {# XXX download links #} |
| 16 | |
| 17 | |
| 18 | <p>These archives contain all the content in the documentation section.</p> |
| 19 | |
| 20 | <h2>Unpacking</h2> |
| 21 | |
| 22 | <p>Unix users should download the .tar.bz2 archives; these are bzipped tar |
| 23 | archives and can be handled in the usual way using tar and the bzip2 |
| 24 | program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be |
| 25 | used to handle the ZIP archives if desired. The .tar.bz2 archives provide the |
| 26 | best compression and fastest download times.</p> |
| 27 | |
| 28 | <p>Windows users can use the ZIP archives since those are customary on that |
| 29 | platform. These are created on Unix using the InfoZIP zip program. They may be |
| 30 | unpacked using the free WiZ tool (from the InfoZIP developers) or any other |
| 31 | tool for handling ZIP archives; any of them should work.</p> |
| 32 | |
| 33 | <p>Note that the .tar.bz2 files are smaller than the other archives; Windows |
| 34 | users may want to install the bzip2 tools on their systems as well. Windows |
| 35 | binaries for a command-line tool are available at <a |
| 36 | href="http://www.bzip.org">The bzip2 and libbzip2 official home page</a>, but |
| 37 | most other archiving utilities support the tar and bzip2 formats as well.</p> |
| 38 | |
| 39 | |
| 40 | <h2>Problems</h2> |
| 41 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 42 | <p>If you have comments or suggestions for the Python documentation, please send |
| 43 | email to <a href="docs@python.org">docs@python.org</a>.</p> |
| 44 | |
Martin v. Löwis | 1561bab | 2008-02-29 19:39:25 +0000 | [diff] [blame] | 45 | --> |
| 46 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 47 | {% endblock %} |