How to check if ImageMagick is installed?

Written by Yujin Boby

Edit in WordPress

How to find ImageMagick is installed on the server, run

which convert

Usually, it will be installed at – /usr/bin/convert

ImageMagick convert  location
On Ubuntu/Debian, you can run the command

dpkg -l | grep imagemagick

ImageMagic Ubuntu dpkg

On RHEL/CentOS/AlmaLinux, use the command

yum list | grep -i image 

To find the version of ImageMagick installed on your computer, run

convert -version

ImageMagick find version

Back to ImageMagick