How to install the latest version of ImageMagick?












1















I am trying to install the latest version of ImageMagick.



https://launchpad.net/ubuntu/+source/imagemagick



I'm using Ubuntu 14.04. After I apt-get update, the version of ImageMagick it lists is 6.7.7.10



However, I want to use ImageMagick version 6.8.9.9. Is there a way to install this version with apt-get or some package manager without upgrading to Ubuntu 16.04?










share|improve this question

























  • Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

    – andrew.46
    Jul 13 '16 at 7:51
















1















I am trying to install the latest version of ImageMagick.



https://launchpad.net/ubuntu/+source/imagemagick



I'm using Ubuntu 14.04. After I apt-get update, the version of ImageMagick it lists is 6.7.7.10



However, I want to use ImageMagick version 6.8.9.9. Is there a way to install this version with apt-get or some package manager without upgrading to Ubuntu 16.04?










share|improve this question

























  • Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

    – andrew.46
    Jul 13 '16 at 7:51














1












1








1


1






I am trying to install the latest version of ImageMagick.



https://launchpad.net/ubuntu/+source/imagemagick



I'm using Ubuntu 14.04. After I apt-get update, the version of ImageMagick it lists is 6.7.7.10



However, I want to use ImageMagick version 6.8.9.9. Is there a way to install this version with apt-get or some package manager without upgrading to Ubuntu 16.04?










share|improve this question
















I am trying to install the latest version of ImageMagick.



https://launchpad.net/ubuntu/+source/imagemagick



I'm using Ubuntu 14.04. After I apt-get update, the version of ImageMagick it lists is 6.7.7.10



However, I want to use ImageMagick version 6.8.9.9. Is there a way to install this version with apt-get or some package manager without upgrading to Ubuntu 16.04?







apt package-management






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 13 '16 at 4:49









edwinksl

16.7k125386




16.7k125386










asked Jul 13 '16 at 4:15









AndrewAndrew

10613




10613













  • Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

    – andrew.46
    Jul 13 '16 at 7:51



















  • Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

    – andrew.46
    Jul 13 '16 at 7:51

















Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

– andrew.46
Jul 13 '16 at 7:51





Perhaps this post might be useful to you: askubuntu.com/a/746195/57576

– andrew.46
Jul 13 '16 at 7:51










2 Answers
2






active

oldest

votes


















1














According to http://www.imagemagick.org/discourse-server/viewtopic.php?t=29006#p129405, there is a PPA that provides the 6.8.9.9 version of ImageMagick for Ubuntu 14.04 at https://launchpad.net/~isage-dna/+archive/ubuntu/imagick that you can try at your own risk:



sudo add-apt-repository ppa:isage-dna/imagick
sudo apt-get update
sudo apt-get upgrade





share|improve this answer
























  • not working on Ubuntu 16.04

    – Kostanos
    Nov 18 '18 at 18:09



















0














Compile from source.





  1. First off, check the current version of imagemagick:



    $ identify -version
    Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
    Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
    Features: DPC Modules OpenMP
    Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib


    If it is already installed via apt-get and the version is old, remove it:



    sudo apt-get remove imagemagick



  2. Create a src directory:



    mkdir ~/src
    cd ~/src



  3. Download version 6.9.10-23 of Imagemagick source:



    wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz



  4. Install some packages from apt-get that are necessary for compiling from source:



    sudo apt-get install build-essential checkinstall



  5. Untar source and cd into directory:



    tar xf ImageMagick-6.9.10-23.tar.gz
    cd ImageMagick-6.9.10-23/



  6. Configure, make and checkinstall:



    ./configure
    make
    checkinstall



  7. Update links/bindings:



    ldconfig



  8. Verify and:



    $ identify -version
    Version: ImageMagick 6.9.10-23 Q16 x86_64 2019-01-02 https://imagemagick.org
    Copyright: © 1999-2019 ImageMagick Studio LLC
    License: https://imagemagick.org/script/license.php
    Features: Cipher DPC OpenMP
    Delegates (built-in): bzlib djvu fontconfig freetype gvc jbig jng jpeg lcms lqr
    lzma openexr png tiff wmf x xml zlib


  9. Party!







share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f797996%2fhow-to-install-the-latest-version-of-imagemagick%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    According to http://www.imagemagick.org/discourse-server/viewtopic.php?t=29006#p129405, there is a PPA that provides the 6.8.9.9 version of ImageMagick for Ubuntu 14.04 at https://launchpad.net/~isage-dna/+archive/ubuntu/imagick that you can try at your own risk:



    sudo add-apt-repository ppa:isage-dna/imagick
    sudo apt-get update
    sudo apt-get upgrade





    share|improve this answer
























    • not working on Ubuntu 16.04

      – Kostanos
      Nov 18 '18 at 18:09
















    1














    According to http://www.imagemagick.org/discourse-server/viewtopic.php?t=29006#p129405, there is a PPA that provides the 6.8.9.9 version of ImageMagick for Ubuntu 14.04 at https://launchpad.net/~isage-dna/+archive/ubuntu/imagick that you can try at your own risk:



    sudo add-apt-repository ppa:isage-dna/imagick
    sudo apt-get update
    sudo apt-get upgrade





    share|improve this answer
























    • not working on Ubuntu 16.04

      – Kostanos
      Nov 18 '18 at 18:09














    1












    1








    1







    According to http://www.imagemagick.org/discourse-server/viewtopic.php?t=29006#p129405, there is a PPA that provides the 6.8.9.9 version of ImageMagick for Ubuntu 14.04 at https://launchpad.net/~isage-dna/+archive/ubuntu/imagick that you can try at your own risk:



    sudo add-apt-repository ppa:isage-dna/imagick
    sudo apt-get update
    sudo apt-get upgrade





    share|improve this answer













    According to http://www.imagemagick.org/discourse-server/viewtopic.php?t=29006#p129405, there is a PPA that provides the 6.8.9.9 version of ImageMagick for Ubuntu 14.04 at https://launchpad.net/~isage-dna/+archive/ubuntu/imagick that you can try at your own risk:



    sudo add-apt-repository ppa:isage-dna/imagick
    sudo apt-get update
    sudo apt-get upgrade






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Jul 13 '16 at 4:48









    edwinksledwinksl

    16.7k125386




    16.7k125386













    • not working on Ubuntu 16.04

      – Kostanos
      Nov 18 '18 at 18:09



















    • not working on Ubuntu 16.04

      – Kostanos
      Nov 18 '18 at 18:09

















    not working on Ubuntu 16.04

    – Kostanos
    Nov 18 '18 at 18:09





    not working on Ubuntu 16.04

    – Kostanos
    Nov 18 '18 at 18:09













    0














    Compile from source.





    1. First off, check the current version of imagemagick:



      $ identify -version
      Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
      Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
      Features: DPC Modules OpenMP
      Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib


      If it is already installed via apt-get and the version is old, remove it:



      sudo apt-get remove imagemagick



    2. Create a src directory:



      mkdir ~/src
      cd ~/src



    3. Download version 6.9.10-23 of Imagemagick source:



      wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz



    4. Install some packages from apt-get that are necessary for compiling from source:



      sudo apt-get install build-essential checkinstall



    5. Untar source and cd into directory:



      tar xf ImageMagick-6.9.10-23.tar.gz
      cd ImageMagick-6.9.10-23/



    6. Configure, make and checkinstall:



      ./configure
      make
      checkinstall



    7. Update links/bindings:



      ldconfig



    8. Verify and:



      $ identify -version
      Version: ImageMagick 6.9.10-23 Q16 x86_64 2019-01-02 https://imagemagick.org
      Copyright: © 1999-2019 ImageMagick Studio LLC
      License: https://imagemagick.org/script/license.php
      Features: Cipher DPC OpenMP
      Delegates (built-in): bzlib djvu fontconfig freetype gvc jbig jng jpeg lcms lqr
      lzma openexr png tiff wmf x xml zlib


    9. Party!







    share|improve this answer




























      0














      Compile from source.





      1. First off, check the current version of imagemagick:



        $ identify -version
        Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
        Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
        Features: DPC Modules OpenMP
        Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib


        If it is already installed via apt-get and the version is old, remove it:



        sudo apt-get remove imagemagick



      2. Create a src directory:



        mkdir ~/src
        cd ~/src



      3. Download version 6.9.10-23 of Imagemagick source:



        wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz



      4. Install some packages from apt-get that are necessary for compiling from source:



        sudo apt-get install build-essential checkinstall



      5. Untar source and cd into directory:



        tar xf ImageMagick-6.9.10-23.tar.gz
        cd ImageMagick-6.9.10-23/



      6. Configure, make and checkinstall:



        ./configure
        make
        checkinstall



      7. Update links/bindings:



        ldconfig



      8. Verify and:



        $ identify -version
        Version: ImageMagick 6.9.10-23 Q16 x86_64 2019-01-02 https://imagemagick.org
        Copyright: © 1999-2019 ImageMagick Studio LLC
        License: https://imagemagick.org/script/license.php
        Features: Cipher DPC OpenMP
        Delegates (built-in): bzlib djvu fontconfig freetype gvc jbig jng jpeg lcms lqr
        lzma openexr png tiff wmf x xml zlib


      9. Party!







      share|improve this answer


























        0












        0








        0







        Compile from source.





        1. First off, check the current version of imagemagick:



          $ identify -version
          Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
          Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
          Features: DPC Modules OpenMP
          Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib


          If it is already installed via apt-get and the version is old, remove it:



          sudo apt-get remove imagemagick



        2. Create a src directory:



          mkdir ~/src
          cd ~/src



        3. Download version 6.9.10-23 of Imagemagick source:



          wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz



        4. Install some packages from apt-get that are necessary for compiling from source:



          sudo apt-get install build-essential checkinstall



        5. Untar source and cd into directory:



          tar xf ImageMagick-6.9.10-23.tar.gz
          cd ImageMagick-6.9.10-23/



        6. Configure, make and checkinstall:



          ./configure
          make
          checkinstall



        7. Update links/bindings:



          ldconfig



        8. Verify and:



          $ identify -version
          Version: ImageMagick 6.9.10-23 Q16 x86_64 2019-01-02 https://imagemagick.org
          Copyright: © 1999-2019 ImageMagick Studio LLC
          License: https://imagemagick.org/script/license.php
          Features: Cipher DPC OpenMP
          Delegates (built-in): bzlib djvu fontconfig freetype gvc jbig jng jpeg lcms lqr
          lzma openexr png tiff wmf x xml zlib


        9. Party!







        share|improve this answer













        Compile from source.





        1. First off, check the current version of imagemagick:



          $ identify -version
          Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
          Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
          Features: DPC Modules OpenMP
          Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib


          If it is already installed via apt-get and the version is old, remove it:



          sudo apt-get remove imagemagick



        2. Create a src directory:



          mkdir ~/src
          cd ~/src



        3. Download version 6.9.10-23 of Imagemagick source:



          wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz



        4. Install some packages from apt-get that are necessary for compiling from source:



          sudo apt-get install build-essential checkinstall



        5. Untar source and cd into directory:



          tar xf ImageMagick-6.9.10-23.tar.gz
          cd ImageMagick-6.9.10-23/



        6. Configure, make and checkinstall:



          ./configure
          make
          checkinstall



        7. Update links/bindings:



          ldconfig



        8. Verify and:



          $ identify -version
          Version: ImageMagick 6.9.10-23 Q16 x86_64 2019-01-02 https://imagemagick.org
          Copyright: © 1999-2019 ImageMagick Studio LLC
          License: https://imagemagick.org/script/license.php
          Features: Cipher DPC OpenMP
          Delegates (built-in): bzlib djvu fontconfig freetype gvc jbig jng jpeg lcms lqr
          lzma openexr png tiff wmf x xml zlib


        9. Party!








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 2 at 18:36









        Joshua PinterJoshua Pinter

        1656




        1656






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f797996%2fhow-to-install-the-latest-version-of-imagemagick%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕