Terminal command to install ImageMagick on Ubuntu Linux and how to check ImageMagick version Ubuntu Linux Systems.
Read below to find out how to install ImageMagick 7 on Ubuntu Linux via Appimage and Source.
Method 1: Install ImageMagick 7 on Ubuntu via Appimage
Run the following commands in terminal to install ImageMagick 7 on Ubuntu via Appimage:
$ wget https://download.imagemagick.org/ImageMagick/download/binaries/magick $ chmod +x magick $ sudo mv magick /usr/bin/ $ ./magick
Method 2: Install ImageMagick 7 on Ubuntu via Source
Run the following commands in terminal to install ImageMagick 7 on Ubuntu via Source:
$ wget https://download.imagemagick.org/ImageMagick/download/ImageMagick.tar.gz
$ tar xvf ImageMagick.tar.gz
$ cd ImageMagick-7.1.0-37/
$ ./configure
$ make
$ sudo make install
$ sudo ldconfig /usr/local/lib
Once the installation is complete you verify the installation and check the version of ImageMagick using the magick -version command.