Pillow/docs/installation.rst

605 lines
29 KiB
ReStructuredText
Raw Normal View History

Installation
============
2015-05-08 14:28:50 +03:00
Warnings
--------
.. warning:: Pillow and PIL cannot co-exist in the same environment. Before installing Pillow, please uninstall PIL.
2013-10-15 16:47:10 +04:00
2021-05-12 00:01:51 +03:00
.. warning:: Pillow >= 1.0 no longer supports ``import Image``. Please use ``from PIL import Image`` instead.
2013-10-15 16:47:10 +04:00
2021-05-12 00:01:51 +03:00
.. warning:: Pillow >= 2.1.0 no longer supports ``import _imaging``. Please use ``from PIL.Image import core as _imaging`` instead.
2013-10-15 16:51:15 +04:00
Python Support
--------------
Pillow supports these Python versions.
.. csv-table:: Newer versions
:file: newer-versions.csv
:header-rows: 1
.. csv-table:: Older versions
:file: older-versions.csv
:header-rows: 1
.. _Linux Installation:
2022-11-28 13:50:55 +03:00
.. _macOS Installation:
.. _Windows Installation:
.. _FreeBSD Installation:
Basic Installation
------------------
.. note::
2015-10-12 18:30:01 +03:00
The following instructions will install Pillow with support for
most common image formats. See :ref:`external-libraries` for a
full list of external libraries supported.
2015-04-04 15:18:45 +03:00
Install Pillow with :command:`pip`::
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
Optionally, install :pypi:`defusedxml` for Pillow to read XMP data,
and :pypi:`olefile` for Pillow to read FPX and MIC images::
python3 -m pip install --upgrade defusedxml olefile
2022-11-28 13:50:55 +03:00
.. tab:: Linux
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
We provide binaries for Linux for each of the supported Python
versions in the manylinux wheel format. These include support for all
optional libraries except libimagequant. Raqm support requires
FriBiDi to be installed separately::
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
Most major Linux distributions, including Fedora, Ubuntu and ArchLinux
also include Pillow in packages that previously contained PIL e.g.
``python-imaging``. Debian splits it into two packages, ``python3-pil``
and ``python3-pil.imagetk``.
2020-08-30 06:07:32 +03:00
.. tab:: macOS
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
We provide binaries for macOS for each of the supported Python
versions in the wheel format. These include support for all optional
libraries except libimagequant. Raqm support requires
FriBiDi to be installed separately::
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
2015-10-12 18:30:01 +03:00
While we provide binaries for both x86-64 and arm64, we do not provide universal2
binaries. However, it is simple to combine our current binaries to create one::
python3 -m pip download --only-binary=:all: --platform macosx_10_10_x86_64 Pillow
python3 -m pip download --only-binary=:all: --platform macosx_11_0_arm64 Pillow
python3 -m pip install delocate
Then, with the names of the downloaded wheels, use Python to combine them::
from delocate.fuse import fuse_wheels
fuse_wheels('Pillow-9.4.0-2-cp39-cp39-macosx_10_10_x86_64.whl', 'Pillow-9.4.0-cp39-cp39-macosx_11_0_arm64.whl', 'Pillow-9.4.0-cp39-cp39-macosx_11_0_universal2.whl')
2022-11-28 13:50:55 +03:00
.. tab:: Windows
2015-10-12 18:30:01 +03:00
2023-10-07 14:49:04 +03:00
.. warning:: Pillow > 9.5.0 no longer includes 32-bit wheels.
2022-12-02 12:40:06 +03:00
We provide Pillow binaries for Windows compiled for the matrix of
supported Pythons in 64-bit versions in the wheel format. These binaries include
support for all optional libraries except libimagequant and libxcb. Raqm support
requires FriBiDi to be installed separately::
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
2017-07-01 12:34:08 +03:00
2022-12-02 12:40:06 +03:00
To install Pillow in MSYS2, see `Building on Windows using MSYS2/MinGW`_.
2017-07-01 12:34:08 +03:00
.. tab:: FreeBSD
2015-10-12 18:30:01 +03:00
2022-12-02 12:40:06 +03:00
Pillow can be installed on FreeBSD via the official Ports or Packages systems:
2022-12-02 12:40:06 +03:00
**Ports**::
2022-12-02 12:40:06 +03:00
cd /usr/ports/graphics/py-pillow && make install clean
2022-12-02 12:40:06 +03:00
**Packages**::
2022-12-02 12:40:06 +03:00
pkg install py38-pillow
2022-12-02 12:40:06 +03:00
.. note::
2022-12-02 12:40:06 +03:00
The `Pillow FreeBSD port
<https://www.freshports.org/graphics/py-pillow/>`_ and packages
are tested by the ports team with all supported FreeBSD versions.
2022-11-28 13:50:55 +03:00
.. _Building on Linux:
.. _Building on macOS:
.. _Building on Windows:
.. _Building on Windows using MSYS2/MinGW:
.. _Building on FreeBSD:
.. _Building on Android:
2015-10-12 18:30:01 +03:00
Building From Source
--------------------
.. _external-libraries:
2015-04-18 01:00:53 +03:00
External Libraries
2015-10-12 18:30:01 +03:00
^^^^^^^^^^^^^^^^^^
2014-07-04 23:17:23 +04:00
.. note::
2016-04-01 13:53:53 +03:00
You **do not need to install all supported external libraries** to
use Pillow's basic features. **Zlib** and **libjpeg** are required
by default.
2015-10-12 18:30:01 +03:00
.. note::
There are Dockerfiles in our `Docker images repo
<https://github.com/python-pillow/docker-images>`_ to install the
dependencies for some operating systems.
2014-07-04 23:17:23 +04:00
Many of Pillow's features require external libraries:
* **libjpeg** provides JPEG functionality.
2020-01-12 14:43:39 +03:00
* Pillow has been tested with libjpeg versions **6b**, **8**, **9-9d** and
libjpeg-turbo version **8**.
* Starting with Pillow 3.0.0, libjpeg is required by default, but
2015-10-02 12:09:13 +03:00
may be disabled with the ``--disable-jpeg`` flag.
* **zlib** provides access to compressed PNGs
* Starting with Pillow 3.0.0, zlib is required by default, but may
2015-10-02 12:09:13 +03:00
be disabled with the ``--disable-zlib`` flag.
2014-11-19 23:14:57 +03:00
* **libtiff** provides compressed TIFF functionality
2023-10-09 13:49:00 +03:00
* Pillow has been tested with libtiff versions **3.x** and **4.0-4.6.0**
* **libfreetype** provides type related services
* **littlecms** provides color management
2013-11-30 22:06:21 +04:00
* Pillow version 2.2.1 and below uses liblcms1, Pillow 2.3.0 and
2023-03-01 03:04:14 +03:00
above uses liblcms2. Tested with **1.19** and **2.7-2.15**.
2013-11-30 22:06:21 +04:00
2014-10-29 21:09:00 +03:00
* **libwebp** provides the WebP format.
2013-11-30 22:06:21 +04:00
* Pillow has been tested with version **0.1.3**, which does not read
2015-12-25 16:26:14 +03:00
transparent WebP files. Versions **0.3.0** and above support
2014-06-02 02:57:25 +04:00
transparency.
2014-06-02 02:57:25 +04:00
* **openjpeg** provides JPEG 2000 functionality.
2022-05-14 03:11:42 +03:00
* Pillow has been tested with openjpeg **2.0.0**, **2.1.0**, **2.3.1**,
**2.4.0** and **2.5.0**.
* Pillow does **not** support the earlier **1.5** series which ships
with Debian Jessie.
2016-05-26 23:55:36 +03:00
* **libimagequant** provides improved color quantization
2023-10-14 01:09:10 +03:00
* Pillow has been tested with libimagequant **2.6-4.2.2**
2016-06-15 13:55:40 +03:00
* Libimagequant is licensed GPLv3, which is more restrictive than
2016-05-26 23:55:36 +03:00
the Pillow license, therefore we will not be distributing binaries
with libimagequant support enabled.
2016-12-15 13:43:02 +03:00
* **libraqm** provides complex text layout support.
* libraqm provides bidirectional text support (using FriBiDi),
shaping (using HarfBuzz), and proper script itemization. As a
result, Raqm can support most writing systems covered by Unicode.
* libraqm depends on the following libraries: FreeType, HarfBuzz,
2018-08-23 14:15:16 +03:00
FriBiDi, make sure that you install them before installing libraqm
2017-07-01 14:14:41 +03:00
if not available as package in your system.
* Setting text direction or font features is not supported without libraqm.
* Pillow wheels since version 8.2.0 include a modified version of libraqm that
loads libfribidi at runtime if it is installed.
On Windows this requires compiling FriBiDi and installing ``fribidi.dll``
2023-03-05 22:14:41 +03:00
into a directory listed in the `Dynamic-link library search order (Microsoft Learn)
<https://learn.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order#search-order-for-unpackaged-apps>`_
(``fribidi-0.dll`` or ``libfribidi-0.dll`` are also detected).
See `Build Options`_ to see how to build this version.
* Previous versions of Pillow (5.0.0 to 8.1.2) linked libraqm dynamically at runtime.
2016-12-15 13:43:02 +03:00
* **libxcb** provides X11 screengrab support.
2023-11-20 10:54:56 +03:00
* Before Pillow 3.3.0, **tcl/tk** was required when building, to later provide
support for tkinter bitmap and photo images. Now, Pillow contains small
tk/tcl header excerpts, and uses Python's tkinter module at runtime if it is
installed.
2022-11-28 13:50:55 +03:00
.. tab:: Linux
2022-12-02 12:40:06 +03:00
If you didn't build Python from source, make sure you have Python's
development libraries installed.
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
In Debian or Ubuntu::
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
sudo apt-get install python3-dev python3-setuptools
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
In Fedora, the command is::
2022-11-28 13:50:55 +03:00
2022-12-03 02:35:01 +03:00
sudo dnf install python3-devel redhat-rpm-config
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
In Alpine, the command is::
2022-11-28 13:50:55 +03:00
2022-12-03 02:35:01 +03:00
sudo apk add python3-dev py3-setuptools
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
.. Note:: ``redhat-rpm-config`` is required on Fedora 23, but not earlier versions.
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
Prerequisites for **Ubuntu 16.04 LTS - 22.04 LTS** are installed with::
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
sudo apt-get install libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev \
libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python3-tk \
libharfbuzz-dev libfribidi-dev libxcb1-dev
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
To install libraqm, ``sudo apt-get install meson`` and then see
``depends/install_raqm.sh``.
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
Prerequisites are installed on recent **Red Hat**, **CentOS** or **Fedora** with::
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
sudo dnf install libtiff-devel libjpeg-devel openjpeg2-devel zlib-devel \
freetype-devel lcms2-devel libwebp-devel tcl-devel tk-devel \
harfbuzz-devel fribidi-devel libraqm-devel libimagequant-devel libxcb-devel
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
Note that the package manager may be yum or DNF, depending on the
exact distribution.
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
Prerequisites are installed for **Alpine** with::
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
sudo apk add tiff-dev jpeg-dev openjpeg-dev zlib-dev freetype-dev lcms2-dev \
libwebp-dev tcl-dev tk-dev harfbuzz-dev fribidi-dev libimagequant-dev \
libxcb-dev libpng-dev
2022-11-28 13:50:55 +03:00
2022-12-02 12:40:06 +03:00
See also the ``Dockerfile``\s in the Test Infrastructure repo
(https://github.com/python-pillow/docker-images) for a known working
install process for other tested distros.
2022-11-28 13:50:55 +03:00
.. tab:: macOS
2022-12-02 12:40:06 +03:00
The Xcode command line tools are required to compile portions of
Pillow. The tools are installed by running ``xcode-select --install``
from the command line. The command line tools are required even if you
have the full Xcode package installed. It may be necessary to run
``sudo xcodebuild -license`` to accept the license prior to using the
tools.
2022-12-02 12:40:06 +03:00
The easiest way to install external libraries is via `Homebrew
<https://brew.sh/>`_. After you install Homebrew, run::
2022-12-02 12:40:06 +03:00
brew install libjpeg libtiff little-cms2 openjpeg webp
2022-12-02 12:40:06 +03:00
To install libraqm on macOS use Homebrew to install its dependencies::
2017-09-02 04:21:12 +03:00
2022-12-02 12:40:06 +03:00
brew install freetype harfbuzz fribidi
2016-12-15 13:43:02 +03:00
2022-12-02 12:40:06 +03:00
Then see ``depends/install_raqm_cmake.sh`` to install libraqm.
2016-12-15 13:43:02 +03:00
.. tab:: Windows
2014-03-22 03:19:51 +04:00
2022-12-02 12:40:06 +03:00
We recommend you use prebuilt wheels from PyPI.
If you wish to compile Pillow manually, you can use the build scripts
in the ``winbuild`` directory used for CI testing and development.
These scripts require Visual Studio 2017 or newer and NASM.
2014-03-22 03:19:51 +04:00
2022-12-02 12:40:06 +03:00
The scripts also install Pillow from the local copy of the source code, so the
`Installing`_ instructions will not be necessary afterwards.
2022-11-28 01:18:47 +03:00
.. tab:: Windows using MSYS2/MinGW
2020-08-30 06:07:32 +03:00
2023-06-27 07:43:58 +03:00
To build Pillow using MSYS2, make sure you run the **MSYS2 MinGW 32-bit** or
**MSYS2 MinGW 64-bit** console, *not* **MSYS2** directly.
The following instructions target the 64-bit build, for 32-bit
replace all occurrences of ``mingw-w64-x86_64-`` with ``mingw-w64-i686-``.
2020-08-30 06:07:32 +03:00
2022-12-02 12:40:06 +03:00
Make sure you have Python and GCC installed::
2020-08-30 06:07:32 +03:00
2022-12-02 12:40:06 +03:00
pacman -S \
mingw-w64-x86_64-gcc \
mingw-w64-x86_64-python3 \
mingw-w64-x86_64-python3-pip \
mingw-w64-x86_64-python3-setuptools
2020-08-30 06:07:32 +03:00
2022-12-02 12:40:06 +03:00
Prerequisites are installed on **MSYS2 MinGW 64-bit** with::
2020-08-30 06:07:32 +03:00
2022-12-02 12:40:06 +03:00
pacman -S \
mingw-w64-x86_64-libjpeg-turbo \
mingw-w64-x86_64-zlib \
mingw-w64-x86_64-libtiff \
mingw-w64-x86_64-freetype \
mingw-w64-x86_64-lcms2 \
mingw-w64-x86_64-libwebp \
mingw-w64-x86_64-openjpeg2 \
mingw-w64-x86_64-libimagequant \
mingw-w64-x86_64-libraqm
2020-08-30 06:07:32 +03:00
https://www.msys2.org/docs/python/ states that setuptools >= 60 does not work with
MSYS2. To workaround this, before installing Pillow you must run::
export SETUPTOOLS_USE_DISTUTILS=stdlib
.. tab:: FreeBSD
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
.. Note:: Only FreeBSD 10 and 11 tested
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
Make sure you have Python's development libraries installed::
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
sudo pkg install python3
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
Prerequisites are installed on **FreeBSD 10 or 11** with::
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
sudo pkg install jpeg-turbo tiff webp lcms2 freetype2 openjpeg harfbuzz fribidi libxcb
2014-06-02 02:57:25 +04:00
2022-12-02 12:40:06 +03:00
Then see ``depends/install_raqm_cmake.sh`` to install libraqm.
2017-07-01 12:34:08 +03:00
.. tab:: Android
2017-09-20 13:08:53 +03:00
2022-12-02 12:40:06 +03:00
Basic Android support has been added for compilation within the Termux
environment. The dependencies can be installed by::
2022-12-02 12:40:06 +03:00
pkg install -y python ndk-sysroot clang make \
libjpeg-turbo
2017-09-20 13:08:53 +03:00
2023-06-27 07:43:58 +03:00
This has been tested within the Termux app on ChromeOS, on x86.
2022-11-28 01:18:47 +03:00
Installing
^^^^^^^^^^
Once you have installed the prerequisites, to install Pillow from the source
code on PyPI, run::
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow --no-binary :all:
If the prerequisites are installed in the standard library locations
for your machine (e.g. :file:`/usr` or :file:`/usr/local`), no
additional configuration should be required. If they are installed in
a non-standard location, you may need to configure setuptools to use
those locations by editing :file:`setup.py` or
:file:`pyproject.toml`, or by adding environment variables on the command
2022-11-28 01:18:47 +03:00
line::
CFLAGS="-I/usr/pkg/include" python3 -m pip install --upgrade Pillow --no-binary :all:
If Pillow has been previously built without the required
prerequisites, it may be necessary to manually clear the pip cache or
build without cache using the ``--no-cache-dir`` option to force a
build with newly installed external libraries.
If you would like to install from a local copy of the source code instead, you
can clone from GitHub with ``git clone https://github.com/python-pillow/Pillow``
or download and extract the `compressed archive from PyPI`_.
2022-11-28 01:18:47 +03:00
After navigating to the Pillow directory, run::
python3 -m pip install --upgrade pip
python3 -m pip install .
.. _compressed archive from PyPI: https://pypi.org/project/Pillow/#files
2022-11-28 01:18:47 +03:00
Build Options
"""""""""""""
* Environment variable: ``MAX_CONCURRENCY=n``. Pillow can use
multiprocessing to build the extension. Setting ``MAX_CONCURRENCY``
sets the number of CPUs to use, or can disable parallel building by
using a setting of 1. By default, it uses 4 CPUs, or if 4 are not
available, as many as are present.
2023-06-04 15:37:17 +03:00
* Config settings: ``-C zlib=disable``, ``-C jpeg=disable``,
``-C tiff=disable``, ``-C freetype=disable``, ``-C raqm=disable``,
``-C lcms=disable``, ``-C webp=disable``, ``-C webpmux=disable``,
``-C jpeg2000=disable``, ``-C imagequant=disable``, ``-C xcb=disable``.
2022-11-28 01:18:47 +03:00
Disable building the corresponding feature even if the development
libraries are present on the building machine.
2023-06-04 15:37:17 +03:00
* Config settings: ``-C zlib=enable``, ``-C jpeg=enable``,
``-C tiff=enable``, ``-C freetype=enable``, ``-C raqm=enable``,
``-C lcms=enable``, ``-C webp=enable``, ``-C webpmux=enable``,
``-C jpeg2000=enable``, ``-C imagequant=enable``, ``-C xcb=enable``.
2022-11-28 01:18:47 +03:00
Require that the corresponding feature is built. The build will raise
an exception if the libraries are not found. Webpmux (WebP metadata)
relies on WebP support. Tcl and Tk also must be used together.
2023-06-04 15:37:17 +03:00
* Config settings: ``-C raqm=vendor``, ``-C fribidi=vendor``.
2022-11-28 01:18:47 +03:00
These flags are used to compile a modified version of libraqm and
a shim that dynamically loads libfribidi at runtime. These are
used to compile the standard Pillow wheels. Compiling libraqm requires
a C99-compliant compiler.
2023-06-04 15:37:17 +03:00
* Build flag: ``-C platform-guessing=disable``. Skips all of the
2022-11-28 01:18:47 +03:00
platform dependent guessing of include and library directories for
automated build systems that configure the proper paths in the
environment variables (e.g. Buildroot).
* Build flag: ``-C debug=true``. Adds a debugging flag to the include and
2022-11-28 01:18:47 +03:00
library search process to dump all paths searched for and found to
stdout.
Sample usage::
2023-06-04 15:37:17 +03:00
python3 -m pip install --upgrade Pillow -C [feature]=enable
2014-03-22 03:19:51 +04:00
2015-04-18 01:00:53 +03:00
Platform Support
----------------
2017-04-03 23:54:37 +03:00
Current platform support for Pillow. Binary distributions are
contributed for each release on a volunteer basis, but the source
should compile and run everywhere platform support is listed. In
general, we aim to support all current versions of Linux, macOS, and
2017-09-20 13:08:53 +03:00
Windows.
2017-04-03 23:54:37 +03:00
Continuous Integration Targets
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
These platforms are built and tested for every change.
2021-10-15 13:07:53 +03:00
+----------------------------------+----------------------------+---------------------+
| Operating system | Tested Python versions | Tested architecture |
+==================================+============================+=====================+
| Alpine | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
| Amazon Linux 2 | 3.9 | x86-64 |
2021-10-15 13:07:53 +03:00
+----------------------------------+----------------------------+---------------------+
2023-03-19 14:36:37 +03:00
| Amazon Linux 2023 | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2021-10-15 13:07:53 +03:00
| Arch | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
| CentOS 7 | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
| CentOS Stream 8 | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2022-02-08 15:35:01 +03:00
| CentOS Stream 9 | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2023-06-23 14:52:00 +03:00
| Debian 11 Bullseye | 3.9 | x86-64 |
2022-01-17 06:07:30 +03:00
+----------------------------------+----------------------------+---------------------+
2023-06-27 09:36:22 +03:00
| Debian 12 Bookworm | 3.11 | x86, x86-64 |
2023-06-11 00:05:47 +03:00
+----------------------------------+----------------------------+---------------------+
2023-04-22 14:47:36 +03:00
| Fedora 38 | 3.11 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2023-11-12 18:20:01 +03:00
| Fedora 39 | 3.12 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2022-02-23 07:26:16 +03:00
| Gentoo | 3.9 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2023-04-01 15:58:08 +03:00
| macOS 12 Monterey | 3.8, 3.9, 3.10, 3.11, | x86-64 |
| | 3.12, PyPy3 | |
+----------------------------------+----------------------------+---------------------+
2023-02-12 05:41:35 +03:00
| Ubuntu Linux 20.04 LTS (Focal) | 3.8 | x86-64 |
+----------------------------------+----------------------------+---------------------+
2023-04-01 15:58:08 +03:00
| Ubuntu Linux 22.04 LTS (Jammy) | 3.8, 3.9, 3.10, 3.11, | x86-64 |
| | 3.12, PyPy3 | |
| +----------------------------+---------------------+
| | 3.10 | arm64v8, ppc64le, |
2023-02-12 05:41:35 +03:00
| | | s390x |
2022-04-22 10:35:20 +03:00
+----------------------------------+----------------------------+---------------------+
2023-04-01 15:58:08 +03:00
| Windows Server 2016 | 3.8 | x86-64 |
2021-10-15 13:07:53 +03:00
+----------------------------------+----------------------------+---------------------+
2023-06-23 14:52:00 +03:00
| Windows Server 2022 | 3.8, 3.9, 3.10, 3.11, | x86-64 |
| | 3.12, PyPy3 | |
2021-10-15 13:07:53 +03:00
| +----------------------------+---------------------+
2023-10-31 04:44:53 +03:00
| | 3.12 | x86 |
2023-06-27 13:51:16 +03:00
| +----------------------------+---------------------+
2023-06-23 14:52:00 +03:00
| | 3.9 (MinGW) | x86-64 |
| +----------------------------+---------------------+
| | 3.8, 3.9 (Cygwin) | x86-64 |
2021-10-15 13:07:53 +03:00
+----------------------------------+----------------------------+---------------------+
2017-04-03 23:54:37 +03:00
Other Platforms
^^^^^^^^^^^^^^^
These platforms have been reported to work at the versions mentioned.
.. note::
2015-10-12 18:30:01 +03:00
Contributors please test Pillow on your platform then update this
document and send a pull request.
2023-10-16 07:34:02 +03:00
+----------------------------------+----------------------------+------------------+--------------+
| Operating system | | Tested Python | | Latest tested | | Tested |
| | | versions | | Pillow version | | processors |
+==================================+============================+==================+==============+
| macOS 14 Sonoma | 3.8, 3.9, 3.10, 3.11, 3.12 | 10.1.0 |arm |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 13 Ventura | 3.8, 3.9, 3.10, 3.11 | 10.0.1 |arm |
| +----------------------------+------------------+ |
| | 3.7 | 9.5.0 | |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 12 Monterey | 3.7, 3.8, 3.9, 3.10, 3.11 | 9.3.0 |arm |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 11 Big Sur | 3.7, 3.8, 3.9, 3.10 | 8.4.0 |arm |
| +----------------------------+------------------+--------------+
| | 3.7, 3.8, 3.9, 3.10, 3.11 | 9.4.0 |x86-64 |
| +----------------------------+------------------+ |
| | 3.6 | 8.4.0 | |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 10.15 Catalina | 3.6, 3.7, 3.8, 3.9 | 8.3.2 |x86-64 |
| +----------------------------+------------------+ |
| | 3.5 | 7.2.0 | |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 10.14 Mojave | 3.5, 3.6, 3.7, 3.8 | 7.2.0 |x86-64 |
| +----------------------------+------------------+ |
| | 2.7 | 6.0.0 | |
| +----------------------------+------------------+ |
| | 3.4 | 5.4.1 | |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 10.13 High Sierra | 2.7, 3.4, 3.5, 3.6 | 4.2.1 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| macOS 10.12 Sierra | 2.7, 3.4, 3.5, 3.6 | 4.1.1 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Mac OS X 10.11 El Capitan | 2.7, 3.4, 3.5, 3.6, 3.7 | 5.4.1 |x86-64 |
| +----------------------------+------------------+ |
| | 3.3 | 4.1.0 | |
+----------------------------------+----------------------------+------------------+--------------+
| Mac OS X 10.9 Mavericks | 2.7, 3.2, 3.3, 3.4 | 3.0.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Mac OS X 10.8 Mountain Lion | 2.6, 2.7, 3.2, 3.3 | |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Redhat Linux 6 | 2.6 | |x86 |
+----------------------------------+----------------------------+------------------+--------------+
| CentOS 6.3 | 2.7, 3.3 | |x86 |
+----------------------------------+----------------------------+------------------+--------------+
| CentOS 8 | 3.9 | 9.0.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Fedora 23 | 2.7, 3.4 | 3.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Ubuntu Linux 12.04 LTS (Precise) | | 2.6, 3.2, 3.3, 3.4, 3.5 | 3.4.1 |x86,x86-64 |
| | | PyPy5.3.1, PyPy3 v2.4.0 | | |
| +----------------------------+------------------+--------------+
| | 2.7 | 4.3.0 |x86-64 |
| +----------------------------+------------------+--------------+
| | 2.7, 3.2 | 3.4.1 |ppc |
+----------------------------------+----------------------------+------------------+--------------+
| Ubuntu Linux 10.04 LTS (Lucid) | 2.6 | 2.3.0 |x86,x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Debian 8.2 Jessie | 2.7, 3.4 | 3.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Raspbian Jessie | 2.7, 3.4 | 3.1.0 |arm |
+----------------------------------+----------------------------+------------------+--------------+
| Raspbian Stretch | 2.7, 3.5 | 4.0.0 |arm |
+----------------------------------+----------------------------+------------------+--------------+
| Raspberry Pi OS | 3.6, 3.7, 3.8, 3.9 | 8.2.0 |arm |
| +----------------------------+------------------+ |
| | 2.7 | 6.2.2 | |
+----------------------------------+----------------------------+------------------+--------------+
| Gentoo Linux | 2.7, 3.2 | 2.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| FreeBSD 11.1 | 2.7, 3.4, 3.5, 3.6 | 4.3.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| FreeBSD 10.3 | 2.7, 3.4, 3.5 | 4.2.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| FreeBSD 10.2 | 2.7, 3.4 | 3.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 11 | 3.9, 3.10, 3.11, 3.12 | 10.1.0 |arm64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 11 Pro | 3.11, 3.12 | 10.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
2023-10-16 07:34:02 +03:00
| Windows 10 | 3.7 | 7.1.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 10/Cygwin 3.3 | 3.6, 3.7, 3.8, 3.9 | 8.4.0 |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 8.1 Pro | 2.6, 2.7, 3.2, 3.3, 3.4 | 2.4.0 |x86,x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 8 Pro | 2.6, 2.7, 3.2, 3.3, 3.4a3 | 2.2.0 |x86,x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows 7 Professional | 3.7 | 7.0.0 |x86,x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
| Windows Server 2008 R2 Enterprise| 3.3 | |x86-64 |
+----------------------------------+----------------------------+------------------+--------------+
Old Versions
------------
You can download old distributions from the `release history at PyPI
<https://pypi.org/project/Pillow/#history>`_ and by direct URL access
eg. https://pypi.org/project/Pillow/1.0/.