Code: Select all
identify -version
My currently solution to the problem is simply to install it from source:
https://docs.travis-ci.com/user/install ... rom-Source
Code: Select all
#!/usr/bin/env bash
set -ex
wget https://www.imagemagick.org/download/ImageMagick-7.0.5-10.tar.gz
tar -xzvf ImageMagick-7.0.5-10.tar.gz
cd ImageMagick-7.0.5-10 && ./configure --prefix=/usr && make && sudo make install
Is there any other way of updating IM without building from source?