Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instruct to install imagemagick directly, without development packages #643

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions docs/guide/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ easily installed using APT:

.. sourcecode:: console

$ sudo apt-get install libmagickwand-dev
$ sudo apt-get install imagemagick

If you're using in a Docker image, it may be beneficial to avoid installing
extra recommended packages:

.. sourcecode:: console

$ sudo apt-get install --no-recommends imagemagick


.. _install-imagemagick-redhat:
Expand All @@ -52,7 +59,14 @@ it can be installed using Yum:
.. sourcecode:: console

$ yum update
$ yum install ImageMagick-devel
$ yum install ImageMagick

If you're using in a Docker image, it may be beneficial to avoid installing
extra non-essential packages:

.. sourcecode:: console

$ yum install --setopt=install_weak_deps=False ImageMagick


.. _install-imagemagick-mac:
Expand Down Expand Up @@ -248,4 +262,3 @@ You may need to create a couple symbolic links for the ImageMagick libraries.

# ln -s /usr/lib/libMagickCore-7.Q16HDRI.so.9 /usr/lib/libMagickCore-7.Q16HDRI.so
# ln -s /usr/lib/libMagickWand-7.Q16HDRI.so.9 /usr/lib/libMagickWand-7.Q16HDRI.so