Files
obsidian/Clippings/Download Python-1.md

93 lines
5.7 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Download Python"
source: "https://www.python.org/downloads/"
author:
- "[[Python.org]]"
published:
created: 2025-10-26
description: "The official home of the Python Programming Language"
tags:
- "clippings"
---
**Notice:** While JavaScript is not essential for this website, your interaction with the content will be limited. Please turn JavaScript on for the full experience.
## Active Python Releases
[For more information visit the Python Developer's Guide](https://devguide.python.org/versions/#versions).
## Looking for a specific release?
Python releases by version number:
[View older releases](https://www.python.org/download/releases/)
## Licenses
All Python releases are [Open Source](https://www.opensource.org/). Historically, most, but not all, Python releases have also been GPL-compatible. The Licenses page details GPL-compatibility and Terms and Conditions.
[Read more](https://docs.python.org/3/license.html#terms-and-conditions-for-accessing-or-otherwise-using-python)
## Sources
For most Unix systems, you must download and compile the source code. The same source code archive can also be used to build the Windows and Mac versions, and is the starting point for ports to all other platforms.
Download the latest [Python 3](https://www.python.org/ftp/python/3.14.0/Python-3.14.0.tar.xz) source.
[Read more](https://www.python.org/download/source/)
## History
Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum in the Netherlands as a successor of a language called ABC. Guido remains Pythons principal author, although it includes many contributions from others.
[Read more](https://docs.python.org/3/license.html)
## Release schedules
- [Python 3.15 Release Schedule](https://peps.python.org/pep-0790/)
- [Python 3.14 Release Schedule](https://peps.python.org/pep-0745/)
- [Python 3.13 Release Schedule](https://peps.python.org/pep-0719/)
- [Python 3.12 Release Schedule](https://peps.python.org/pep-0693/)
- [Python 3.11 Release Schedule](https://peps.python.org/pep-0664/)
- [Python 3.10 Release Schedule](https://peps.python.org/pep-0619/)
- [Python 3.9 Release Schedule](https://www.python.org/dev/peps/pep-0596/)
- [Python 3.8 Release Schedule](https://www.python.org/dev/peps/pep-0569/)
See [Status of Python versions](https://devguide.python.org/versions/) for all an overview of all versions, including unsupported.
## How to verify your downloaded files are genuine
#### Sigstore verification
Starting with the [Python 3.11.0](https://www.python.org/downloads/release/python-3110/), [Python 3.10.7](https://www.python.org/downloads/release/python-3107/), and [Python 3.9.14](https://www.python.org/downloads/release/python-3914/) releases, CPython release artifacts are signed with Sigstore. See our dedicated [Sigstore Information](https://www.python.org/downloads/metadata/sigstore/) page for how it works.
#### OpenPGP verification
Python versions before 3.14 are also signed using OpenPGP private keys of the respective release manager. In this case, verification through the release manager's public key is also possible. See our dedicated [OpenPGP Verification](https://www.python.org/downloads/metadata/pgp/) page for how it works.
See [PEP 761](https://peps.python.org/pep-0761/) for why OpenPGP key verification was dropped in Python 3.14.
#### Windows
(Updated for Azure Trusted Signing, which applies for all releases chronologically from 3.14.0a1)
The Windows installers and all binaries produced as part of each Python release are signed using an **Authenticode** signing certificate issued to the Python Software Foundation. This can be verified by viewing the properties of any executable file, looking at the Digital Signatures tab, and confirming the name of the signer. Our full certificate subject is `CN = Python Software Foundation, O = Python Software Foundation, L = Beaverton, S = Oregon, C = US` and as of 14th October 2024 the certificate authority is `Microsoft Identity Verification Root Certificate Authority`. Our previous certificates were issued by **DigiCert**.
Note that some executables may not be signed, notably, the default `pip` command. These are not built as part of Python, but are included from third-party libraries. Files that are intended to be modified before use cannot be signed and so will not have a signature.
#### macOS Installer Packages
Installer packages for Python on macOS downloadable from python.org are signed with with an Apple Developer ID Installer certificate.
As of Python 3.11.4 and 3.12.0b1 (2023-05-23), release installer packages are signed with certificates issued to the Python Software Foundation (Apple Developer ID **BMM5U3QVKW)**).
Installer packages for previous releases were signed with certificates issued to Ned Deily (**DJ3H93M7VJ**).
## Other useful items
- Looking for third-party **Python modules**? The [Python Package Index](https://pypi.org/) has many of them.
- You can [view](https://docs.python.org/) the standard documentation online, or you can [download](https://docs.python.org/3/download.html) it in HTML, EPUB and other formats. See the main [Documentation](https://www.python.org/doc/) page.
- **Tip**: even if you download a ready-made binary for your platform, it makes sense to also download the [source](https://www.python.org/downloads/source). This lets you browse the standard library (the subdirectory **Lib**) and the standard collections of tools (**Tools**) that come with it. There's a lot you can learn from the source!
## Want to contribute?
Want to contribute? See the [Python Developer's Guide](https://devguide.python.org/) to learn about how Python development is managed.