Last active
December 4, 2022 18:57
-
-
Save ahmadhasankhan/3d172098a8890f3a9851ced1690d4df6 to your computer and use it in GitHub Desktop.
Revisions
-
ahmadhasankhan revised this gist
Apr 16, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd ~/src Download the Binary: `wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz` Extract the tar -
ahmadhasankhan renamed this gist
Apr 16, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ahmadhasankhan created this gist
Apr 16, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ Remove imagemagick ``` sudo apt-get --purge remove imagemagick sudo apt autoremove ``` Install Required package: ``` sudo apt-get install build-essential sudo apt-get install checkinstall sudo apt-get install libgs-dev sudo apt-get install ghostscript ``` Create a new directory ``` mkdir ~/src cd ~/src ``` Download the Binary: wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz Extract the tar ``` tar xf ImageMagick-6.7.7-10.tar.xz cd ImageMagick-6.7.7-10/ ``` Proceed to instaltion: ``` sudo ./configure --with-gslib=yes sudo make sudo checkinstall sudo ldconfig ``` Verify the version: `identify -version`