Version discrepencies with Imagemagick. How to fix?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
It appears my install of the latest imagemagick is successful, but there is a discrepency when I query the version. identify -version shows the older version, and running it as identify calls the older version. Running convert does however call the more recent imagemagick.
There seems to be a default path issue, and I'm curious how to fix this without breaking something else :D
leo@thegrid:/usr$ /usr/local/bin/identify -version
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
Delegates (built-in): gvc jpeg x xml zlib
But getting the version gives this:
leo@thegrid:/usr$ identify -version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-11-29 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
But still, running "convert" does seem to bring up the proper version:
leo@thegrid:/usr$ convert
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
What gives?
imagemagick
|
show 2 more comments
It appears my install of the latest imagemagick is successful, but there is a discrepency when I query the version. identify -version shows the older version, and running it as identify calls the older version. Running convert does however call the more recent imagemagick.
There seems to be a default path issue, and I'm curious how to fix this without breaking something else :D
leo@thegrid:/usr$ /usr/local/bin/identify -version
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
Delegates (built-in): gvc jpeg x xml zlib
But getting the version gives this:
leo@thegrid:/usr$ identify -version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-11-29 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
But still, running "convert" does seem to bring up the proper version:
leo@thegrid:/usr$ convert
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
What gives?
imagemagick
What doeswhich convertreturn as the path? You might need to create links to the versions you want. Theconvertyou might be looking for could be in/usr/bin/but the one you are running could be in/usr/local/bin/
– Terrance
Dec 28 '16 at 23:12
which convertreturns the proper path but I was under the impressionidentifywas connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?
– Pipsqweek
Dec 28 '16 at 23:16
You might want to look at/usr/bin/convert --versionand/usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.
– Terrance
Dec 28 '16 at 23:21
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
/usr/local/bin(which is where you should place additional local binaries) has a higher priority than/usr/bin(which is where the system's package manager installs software) by default. You can see that when you runecho "$PATH", the leftmost path has the highest priority. I recommend not to change that though.
– Byte Commander
Dec 28 '16 at 23:39
|
show 2 more comments
It appears my install of the latest imagemagick is successful, but there is a discrepency when I query the version. identify -version shows the older version, and running it as identify calls the older version. Running convert does however call the more recent imagemagick.
There seems to be a default path issue, and I'm curious how to fix this without breaking something else :D
leo@thegrid:/usr$ /usr/local/bin/identify -version
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
Delegates (built-in): gvc jpeg x xml zlib
But getting the version gives this:
leo@thegrid:/usr$ identify -version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-11-29 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
But still, running "convert" does seem to bring up the proper version:
leo@thegrid:/usr$ convert
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
What gives?
imagemagick
It appears my install of the latest imagemagick is successful, but there is a discrepency when I query the version. identify -version shows the older version, and running it as identify calls the older version. Running convert does however call the more recent imagemagick.
There seems to be a default path issue, and I'm curious how to fix this without breaking something else :D
leo@thegrid:/usr$ /usr/local/bin/identify -version
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
Delegates (built-in): gvc jpeg x xml zlib
But getting the version gives this:
leo@thegrid:/usr$ identify -version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-11-29 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
But still, running "convert" does seem to bring up the proper version:
leo@thegrid:/usr$ convert
Version: ImageMagick 7.0.4-0 Q16 x86_64 2016-12-28 http://www.imagemagick.org
Copyright: Copyright 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP
What gives?
imagemagick
imagemagick
asked Dec 28 '16 at 22:50
PipsqweekPipsqweek
1161
1161
What doeswhich convertreturn as the path? You might need to create links to the versions you want. Theconvertyou might be looking for could be in/usr/bin/but the one you are running could be in/usr/local/bin/
– Terrance
Dec 28 '16 at 23:12
which convertreturns the proper path but I was under the impressionidentifywas connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?
– Pipsqweek
Dec 28 '16 at 23:16
You might want to look at/usr/bin/convert --versionand/usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.
– Terrance
Dec 28 '16 at 23:21
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
/usr/local/bin(which is where you should place additional local binaries) has a higher priority than/usr/bin(which is where the system's package manager installs software) by default. You can see that when you runecho "$PATH", the leftmost path has the highest priority. I recommend not to change that though.
– Byte Commander
Dec 28 '16 at 23:39
|
show 2 more comments
What doeswhich convertreturn as the path? You might need to create links to the versions you want. Theconvertyou might be looking for could be in/usr/bin/but the one you are running could be in/usr/local/bin/
– Terrance
Dec 28 '16 at 23:12
which convertreturns the proper path but I was under the impressionidentifywas connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?
– Pipsqweek
Dec 28 '16 at 23:16
You might want to look at/usr/bin/convert --versionand/usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.
– Terrance
Dec 28 '16 at 23:21
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
/usr/local/bin(which is where you should place additional local binaries) has a higher priority than/usr/bin(which is where the system's package manager installs software) by default. You can see that when you runecho "$PATH", the leftmost path has the highest priority. I recommend not to change that though.
– Byte Commander
Dec 28 '16 at 23:39
What does
which convert return as the path? You might need to create links to the versions you want. The convert you might be looking for could be in /usr/bin/ but the one you are running could be in /usr/local/bin/– Terrance
Dec 28 '16 at 23:12
What does
which convert return as the path? You might need to create links to the versions you want. The convert you might be looking for could be in /usr/bin/ but the one you are running could be in /usr/local/bin/– Terrance
Dec 28 '16 at 23:12
which convert returns the proper path but I was under the impression identify was connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?– Pipsqweek
Dec 28 '16 at 23:16
which convert returns the proper path but I was under the impression identify was connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?– Pipsqweek
Dec 28 '16 at 23:16
You might want to look at
/usr/bin/convert --version and /usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.– Terrance
Dec 28 '16 at 23:21
You might want to look at
/usr/bin/convert --version and /usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.– Terrance
Dec 28 '16 at 23:21
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
/usr/local/bin (which is where you should place additional local binaries) has a higher priority than /usr/bin (which is where the system's package manager installs software) by default. You can see that when you run echo "$PATH", the leftmost path has the highest priority. I recommend not to change that though.– Byte Commander
Dec 28 '16 at 23:39
/usr/local/bin (which is where you should place additional local binaries) has a higher priority than /usr/bin (which is where the system's package manager installs software) by default. You can see that when you run echo "$PATH", the leftmost path has the highest priority. I recommend not to change that though.– Byte Commander
Dec 28 '16 at 23:39
|
show 2 more comments
0
active
oldest
votes
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%2f865603%2fversion-discrepencies-with-imagemagick-how-to-fix%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f865603%2fversion-discrepencies-with-imagemagick-how-to-fix%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
What does
which convertreturn as the path? You might need to create links to the versions you want. Theconvertyou might be looking for could be in/usr/bin/but the one you are running could be in/usr/local/bin/– Terrance
Dec 28 '16 at 23:12
which convertreturns the proper path but I was under the impressionidentifywas connected and important too. I might be wrong -- but what would be the most non-destructive way to redirect this?– Pipsqweek
Dec 28 '16 at 23:16
You might want to look at
/usr/bin/convert --versionand/usr/local/bin/convert --version. The default path is the one that will be called. It sounds like you have two different versions installed and they are in different folders.– Terrance
Dec 28 '16 at 23:21
That is correct. Is there a way to make one or the other default?
– Pipsqweek
Dec 28 '16 at 23:33
/usr/local/bin(which is where you should place additional local binaries) has a higher priority than/usr/bin(which is where the system's package manager installs software) by default. You can see that when you runecho "$PATH", the leftmost path has the highest priority. I recommend not to change that though.– Byte Commander
Dec 28 '16 at 23:39