{% extends "layout.html" %} {% set title = _('Download') %} {% if daily is defined %} {% set dl_base = pathto('archives', resource=True) %} {% set dl_version = version %} {% else %} {# The link below returns HTTP 404 until the first related alpha release. This is expected; use daily documentation builds for CPython development. #} {% set dl_base = 'https://www.python.org/ftp/python/doc/' + release %} {% set dl_version = release %} {% endif %} {% block body %}

{% trans %}Download Python {{ dl_version }} Documentation{% endtrans %}

{% if last_updated %}

{% trans %}Last updated on: {{ last_updated }}.{% endtrans %}

{% endif %}

{% trans %}To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table.{% endtrans %}

{% trans %}Format{% endtrans %} {% trans %}Packed as .zip{% endtrans %} {% trans %}Packed as .tar.bz2{% endtrans %}
{% trans %}PDF{% endtrans %} {% trans download_size="17" %}Download (ca. {{ download_size }} MiB){% endtrans %} {% trans download_size="17" %}Download (ca. {{ download_size }} MiB){% endtrans %}
{% trans %}HTML{% endtrans %} {% trans download_size="13" %}Download (ca. {{ download_size }} MiB){% endtrans %} {% trans download_size="8" %}Download (ca. {{ download_size }} MiB){% endtrans %}
{% trans %}Plain text{% endtrans %} {% trans download_size="4" %}Download (ca. {{ download_size }} MiB){% endtrans %} {% trans download_size="3" %}Download (ca. {{ download_size }} MiB){% endtrans %}
{% trans %}Texinfo{% endtrans %} {% trans download_size="9" %}Download (ca. {{ download_size }} MiB){% endtrans %} {% trans download_size="7" %}Download (ca. {{ download_size }} MiB){% endtrans %}
{% trans %}EPUB{% endtrans %} {% trans download_size="6" %}Download (ca. {{ download_size }} MiB){% endtrans %}

{% trans %}These archives contain all the content in the documentation.{% endtrans %}

{% trans %}Unpacking{% endtrans %}

{% trans %}Unix users should download the .tar.bz2 archives; these are bzipped tar archives and can be handled in the usual way using tar and the bzip2 program. The Info-ZIP unzip program can be used to handle the ZIP archives if desired. The .tar.bz2 archives provide the best compression and fastest download times.{% endtrans %}

{% trans %}Windows users can use the ZIP archives since those are customary on that platform. These are created on Unix using the Info-ZIP zip program.{% endtrans %}

{% trans %}Problems{% endtrans %}

{% trans %}If you have comments or suggestions for the Python documentation, please send email to docs@python.org.{% endtrans %}

{% endblock %}