Skip to content

Commit e2c96b3

Browse files
committed
Updated minimal Python version and install guide.
1 parent f3ab6f9 commit e2c96b3

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

docs/guide/install.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ easily installed using APT:
3838

3939
.. sourcecode:: console
4040

41-
$ sudo apt-get install libmagickwand-dev
41+
$ sudo apt install imagemagick
4242

4343

4444
.. _install-imagemagick-redhat:
@@ -52,7 +52,7 @@ it can be installed using Yum:
5252
.. sourcecode:: console
5353

5454
$ yum update
55-
$ yum install ImageMagick-devel
55+
$ yum install ImageMagick-libs
5656

5757

5858
.. _install-imagemagick-mac:
@@ -67,13 +67,20 @@ Homebrew
6767

6868
$ brew install imagemagick
6969

70-
.. If :ref:`seam carving <seam-carving>` (:meth:`Image.liquid_rescale()
71-
<wand.image.BaseImage.liquid_rescale>`) is needed you have install
72-
liblqr_ as well:
70+
If :ref:`seam carving <seam-carving>` (:meth:`Image.liquid_rescale()
71+
<wand.image.BaseImage.liquid_rescale>`) is needed you have install
72+
liblqr_ as well:
7373

74-
.. sourcecode:: console
74+
.. sourcecode:: console
75+
76+
$ brew install imagemagick --with-liblqr
77+
78+
If you need to render PDF files, or use FreeType font features, you
79+
will need to install Ghostscript:
80+
81+
.. sourcecode:: console
7582

76-
$ brew install imagemagick --with-liblqr
83+
$ brew install ghostscript
7784

7885
If you are running on a Mac with Apple Silicon, you will need to export
7986
:envvar:`MAGICK_HOME` before using Wand.

docs/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ are lacking something we need:
6161
Requirements
6262
------------
6363

64-
- Python 3.3 or higher
64+
- Python 3.8 or higher
6565

66-
- CPython 3.3 or higher
67-
- PyPy 1.5 or higher
66+
- CPython 3.8 or higher
67+
- PyPy 3.10 or higher
6868

6969
- MagickWand library
7070

71-
- ``libmagickwand-dev`` for APT on Debian/Ubuntu
71+
- ``imagemagick-7.q16`` for APT on Debian/Ubuntu
7272
- ``imagemagick`` for MacPorts/Homebrew on Mac
73-
- ``ImageMagick-devel`` for Yum on CentOS
73+
- ``ImageMagick-libs`` for Yum on CentOS
7474

7575

7676
User's guide

0 commit comments

Comments
 (0)