Imagemagick Install question

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Don
Posts: 47
Joined: 2013-05-09T14:10:43-07:00
Authentication code: 6789

Imagemagick Install question

Post by Don »

Hello,

I am thinking about upgrading my imagemagick on my linux machine soon and prior I installed via source. I see now that there is a RPM package at http://www.imagemagick.org/script/binary-releases.php which is easier to install with.

My question is, would there be a problem if I upgraded via RPM since prior versions I installed via source? Does the RPM install remove any previous versions of imagemagick?

Thank you in advance.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Imagemagick Install question

Post by fmw42 »

I do not know what is removed. (I am on a Mac). But consider that you may install and then have different versions in different locations causing a conflict. So I would recommend uninstalling the old version before installing the new version. See

http://www.imagemagick.org/script/advan ... .php#build
http://www.imagemagick.org/script/advan ... .php#linux
Don
Posts: 47
Joined: 2013-05-09T14:10:43-07:00
Authentication code: 6789

Re: Imagemagick Install question

Post by Don »

Thank you for the response and links.

I'll just go ahead and continue with installing from source but first uninstall previous version via make uninstall.

Another question, even if everything is working with current install IM, would it be advisable to always upgrade your IM when a new stable version is released?

Thank you.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Imagemagick Install question

Post by fmw42 »

I always upgrade to the latest version by installing manually from source. That way I get all the latest bug fixes and enhancements. But that is my opinion. Linux distributions seem to always lag way behind by 100s of versions. That is a shame, since often they have bugs.

If you install manually from source, just do

./configure ...
make clean
make
(sudo) make install (sudo for Mac)

The make clean helps to remove unneeded files. I find that if I do not do that and switch between HDRI and non-HDRI, I can have trouble. So I always do that.

You can make uninstall if you want to be sure. But I have not found it to be necessary. Again my limited experience on Mac.
Post Reply