Fix Missing ImageMagick Package on Ubuntu 14.04 – Solutions

14.04imagemagick

Usually I had installed Image Magick on my Ubuntu systems with a command like this

sudo apt-get install imagemagick

or like this:

sudo apt-get install php5-imagick

Right now I am running the latest 14.04, and those packages seem to have disappeared from the repositories. Am I missing something? Have they been obsoleted? How could I install ImageMagick now?

Best Answer

The package you are looking for is imagemagick. Confirm that you have all sources check marked in "Software and Updates":

software and updates package sources

and then update the package list by opening a terminal(Ctrl+Alt+t) and then typing the following:

sudo apt-get update

and enter you password and then

sudo apt-get install imagemagick php5-imagick

and then press Return to confirm the installation.

Related Question