I have spent 3 evenings trying to install ImageMagick and to cut a long story short my latest attempt comes up with: error while loading shared libraries: libMagickCore.so.3: cannot open shared object file: No such file or directory
This is the process I have been going through:
# uninstall old ImageMagick
yum remove ImageMagick
# get new ImageMagick sources
wget ftp://ftp.imagemagick.org/pub/ImageMagi ... ick.tar.gz
# untar
tar -zxvf ImageMagick*.tar.gz
cd ImageMagick*
# configure and make
./configure
make
# install
make install
Any ideas where I am going wrong ?