Skip to content

Instantly share code, notes, and snippets.

@rodleviton
Created May 26, 2014 07:37
Show Gist options
  • Star 76 You must be signed in to star a gist
  • Fork 35 You must be signed in to fork a gist
  • Save rodleviton/74e22e952bd6e7e5bee1 to your computer and use it in GitHub Desktop.
Save rodleviton/74e22e952bd6e7e5bee1 to your computer and use it in GitHub Desktop.
Installing Image Magick on Ubuntu 14.04
sudo -i
cd
apt-get install build-essential checkinstall && apt-get build-dep imagemagick -y
wget http://www.imagemagick.org/download/ImageMagick-6.8.7-7.tar.gz
tar xzvf ImageMagick-6.8.9-1.tar.gz
cd ImageMagick-6.8.9-1/
./configure --prefix=/opt/imagemagick-6.8 && make
checkinstall
@deejayingo
Copy link

deejayingo commented Aug 2, 2017

I had a similar problem and tried sudo apt install and sudo apt update, ...apt upgrade, ...apt-get partitial... purge... autoreinstall etc. etc.
but i didn't recognized that apt-get and aptitude are different ways to get packages.

At the end that was my solution:
sudo aptitude reinstall <package/app/missing deb>
an other version i found is following (but I don't tried because that worked fine):
sudo aptitude reinstall -f <package/app/missing deb pkg>

{In my case it was sudo aptitude reinstall libmagick++-6.q16-7:amd64 just to make it clear}

I hope it helps someone like it helped me

@ronzillia
Copy link

@terrysahaidak Try capital Y

@dangkhoaow
Copy link

Best place to execute ImageMagick online for you. Supporting all ImageMagick feature with output file and console log, no need to install.
https://freetoolonline.com/imagemagick-online.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment