SoftCreatR / imei

IMEI - ImageMagick Easy Install
ISC License
293 stars 35 forks source link

How to install Specific version of ImageMagick? #43

Closed vihatsoft closed 2 years ago

vihatsoft commented 2 years ago

hi, i have already install ImageMagick 7.1 when i run bellow code it will install 7.1. but i want to install ImageMagick 6.9.10. so how can i install ImageMagick 6.9.10? t=$(mktemp) && \ wget 'https://dist.1-2.dev/imei.sh' -qO "$t" && \ bash "$t" && \ rm "$t"

thank you

SoftCreatR commented 2 years ago

Hi,

simply execute imei.sh with --imagemagick-version 6.9.10-97

However, is there a specific reason for 6.9.10 (where the latest version has been released in Feb 2020, while the latest version is 6.9.12). If not, the OS maintainers version may fit your needs.

vihatsoft commented 2 years ago

where can i put --imagemagick-version 6.9.10-97 in bellow code?

t=$(mktemp) && \
wget 'https://dist.1-2.dev/imei.sh' -qO "$t" && \
bash "$t" && \
rm "$t"
SoftCreatR commented 2 years ago

after "$t"

vihatsoft commented 2 years ago

get error: Verifying installation [FAILURE]

SoftCreatR commented 2 years ago

Did you remove any previous installation?

However, please execute identify -version and see, if the installation was successful anyways. Maybe, there's a bug in the verification process.