How to install the latest version of ImageMagick?
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
add a comment |
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
Perhaps this post might be useful to you: askubuntu.com/a/746195/57576
– andrew.46
Jul 13 '16 at 7:51
add a comment |
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
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
apt package-management
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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
not working on Ubuntu 16.04
– Kostanos
Nov 18 '18 at 18:09
add a comment |
Compile from source.
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
Create a
src
directory:
mkdir ~/src
cd ~/src
Download version 6.9.10-23 of Imagemagick source:
wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz
Install some packages from apt-get that are necessary for compiling from source:
sudo apt-get install build-essential checkinstall
Untar source and cd into directory:
tar xf ImageMagick-6.9.10-23.tar.gz
cd ImageMagick-6.9.10-23/
Configure, make and checkinstall:
./configure
make
checkinstall
Update links/bindings:
ldconfig
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
Party!
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
not working on Ubuntu 16.04
– Kostanos
Nov 18 '18 at 18:09
add a comment |
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
not working on Ubuntu 16.04
– Kostanos
Nov 18 '18 at 18:09
add a comment |
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
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
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
add a comment |
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
add a comment |
Compile from source.
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
Create a
src
directory:
mkdir ~/src
cd ~/src
Download version 6.9.10-23 of Imagemagick source:
wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz
Install some packages from apt-get that are necessary for compiling from source:
sudo apt-get install build-essential checkinstall
Untar source and cd into directory:
tar xf ImageMagick-6.9.10-23.tar.gz
cd ImageMagick-6.9.10-23/
Configure, make and checkinstall:
./configure
make
checkinstall
Update links/bindings:
ldconfig
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
Party!
add a comment |
Compile from source.
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
Create a
src
directory:
mkdir ~/src
cd ~/src
Download version 6.9.10-23 of Imagemagick source:
wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz
Install some packages from apt-get that are necessary for compiling from source:
sudo apt-get install build-essential checkinstall
Untar source and cd into directory:
tar xf ImageMagick-6.9.10-23.tar.gz
cd ImageMagick-6.9.10-23/
Configure, make and checkinstall:
./configure
make
checkinstall
Update links/bindings:
ldconfig
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
Party!
add a comment |
Compile from source.
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
Create a
src
directory:
mkdir ~/src
cd ~/src
Download version 6.9.10-23 of Imagemagick source:
wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz
Install some packages from apt-get that are necessary for compiling from source:
sudo apt-get install build-essential checkinstall
Untar source and cd into directory:
tar xf ImageMagick-6.9.10-23.tar.gz
cd ImageMagick-6.9.10-23/
Configure, make and checkinstall:
./configure
make
checkinstall
Update links/bindings:
ldconfig
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
Party!
Compile from source.
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
Create a
src
directory:
mkdir ~/src
cd ~/src
Download version 6.9.10-23 of Imagemagick source:
wget http://www.imagemagick.org/download/ImageMagick-6.9.10-23.tar.gz
Install some packages from apt-get that are necessary for compiling from source:
sudo apt-get install build-essential checkinstall
Untar source and cd into directory:
tar xf ImageMagick-6.9.10-23.tar.gz
cd ImageMagick-6.9.10-23/
Configure, make and checkinstall:
./configure
make
checkinstall
Update links/bindings:
ldconfig
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
Party!
answered Jan 2 at 18:36
Joshua PinterJoshua Pinter
1656
1656
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Perhaps this post might be useful to you: askubuntu.com/a/746195/57576
– andrew.46
Jul 13 '16 at 7:51