I can't install libtiff on my 64-bit Ubuntu
When I try to install libtiff on my 64-bit Ubuntu, I get the following error:
sudo apt-get install libtiff
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libtiff is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libtiff' has no installation candidate
ubuntu@ip-10-119-97-123:/mnt$ libtiff-memcached
libtiff-memcached: command not found
12.04 apt software-installation libtiff
add a comment |
When I try to install libtiff on my 64-bit Ubuntu, I get the following error:
sudo apt-get install libtiff
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libtiff is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libtiff' has no installation candidate
ubuntu@ip-10-119-97-123:/mnt$ libtiff-memcached
libtiff-memcached: command not found
12.04 apt software-installation libtiff
add a comment |
When I try to install libtiff on my 64-bit Ubuntu, I get the following error:
sudo apt-get install libtiff
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libtiff is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libtiff' has no installation candidate
ubuntu@ip-10-119-97-123:/mnt$ libtiff-memcached
libtiff-memcached: command not found
12.04 apt software-installation libtiff
When I try to install libtiff on my 64-bit Ubuntu, I get the following error:
sudo apt-get install libtiff
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libtiff is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libtiff' has no installation candidate
ubuntu@ip-10-119-97-123:/mnt$ libtiff-memcached
libtiff-memcached: command not found
12.04 apt software-installation libtiff
12.04 apt software-installation libtiff
edited Aug 3 '14 at 21:44
Tim
20k1586141
20k1586141
asked Jun 25 '13 at 14:04
marwamarwa
26112
26112
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
libtiff has no installation candidate. Your choices are:
sudo apt-get install libtiff4
for Ubuntu 12.04, 12.10, 13.04, and 13.10 ... or
sudo apt install libtiff5
for Ubuntu 14.04, 15.04, 15.10, 16.04, 16.10 17.04, 17.10, 18.04, 18.10 and 19.04.
You can also install libtiff4 and libtiff5 from the Ubuntu Software Center.
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlinklibtiff4tolibtiff5? A program I'm trying to run needslibtiff4.
– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
add a comment |
If like me, you may be looking for the utils:
sudo apt-get install libtiff-tools
add a comment |
libtiff4 was upto 13.10 and 14.04 provides libtiff5.
To install it nonetheless, go to the download page and select libtiff4_3.9.7-2ubuntu1_amd64.deb.
Open terminal and, in the folder you downloaded the file, write:
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb
libtiff5 and libtiff4 are co-installable, so it will not write over the files of libtiff5.
add a comment |
sudo apt-get update
sudo apt-get install libtiff4
These commands will install libtiff on your 64 bit machine. You can use http://packages.ubuntu.com/ to search for the packages you need. In this case, it is http://packages.ubuntu.com/precise/libtiff4
add a comment |
I had a similar issue. So what solved it for me was to do:
sudo apt-get install libtiff-dev
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%2f312556%2fi-cant-install-libtiff-on-my-64-bit-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
libtiff has no installation candidate. Your choices are:
sudo apt-get install libtiff4
for Ubuntu 12.04, 12.10, 13.04, and 13.10 ... or
sudo apt install libtiff5
for Ubuntu 14.04, 15.04, 15.10, 16.04, 16.10 17.04, 17.10, 18.04, 18.10 and 19.04.
You can also install libtiff4 and libtiff5 from the Ubuntu Software Center.
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlinklibtiff4tolibtiff5? A program I'm trying to run needslibtiff4.
– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
add a comment |
libtiff has no installation candidate. Your choices are:
sudo apt-get install libtiff4
for Ubuntu 12.04, 12.10, 13.04, and 13.10 ... or
sudo apt install libtiff5
for Ubuntu 14.04, 15.04, 15.10, 16.04, 16.10 17.04, 17.10, 18.04, 18.10 and 19.04.
You can also install libtiff4 and libtiff5 from the Ubuntu Software Center.
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlinklibtiff4tolibtiff5? A program I'm trying to run needslibtiff4.
– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
add a comment |
libtiff has no installation candidate. Your choices are:
sudo apt-get install libtiff4
for Ubuntu 12.04, 12.10, 13.04, and 13.10 ... or
sudo apt install libtiff5
for Ubuntu 14.04, 15.04, 15.10, 16.04, 16.10 17.04, 17.10, 18.04, 18.10 and 19.04.
You can also install libtiff4 and libtiff5 from the Ubuntu Software Center.
libtiff has no installation candidate. Your choices are:
sudo apt-get install libtiff4
for Ubuntu 12.04, 12.10, 13.04, and 13.10 ... or
sudo apt install libtiff5
for Ubuntu 14.04, 15.04, 15.10, 16.04, 16.10 17.04, 17.10, 18.04, 18.10 and 19.04.
You can also install libtiff4 and libtiff5 from the Ubuntu Software Center.
edited Feb 1 at 22:17
answered Jun 25 '13 at 14:16
karelkarel
60.2k13130154
60.2k13130154
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlinklibtiff4tolibtiff5? A program I'm trying to run needslibtiff4.
– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
add a comment |
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlinklibtiff4tolibtiff5? A program I'm trying to run needslibtiff4.
– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
When I do that it tells me "libtiff5 is already the newest version" but then when look what happens when I do this: >>> from libtiff import TIFF Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'libtiff'
– Frikster
Feb 11 '16 at 21:12
1
1
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
askubuntu.com/questions/732607/…
– Frikster
Feb 11 '16 at 22:45
Can I symlink
libtiff4 to libtiff5? A program I'm trying to run needs libtiff4.– Aaron Franke
Oct 11 '17 at 0:03
Can I symlink
libtiff4 to libtiff5? A program I'm trying to run needs libtiff4.– Aaron Franke
Oct 11 '17 at 0:03
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
@AaronFranke askubuntu.com/questions/44132/how-do-i-install-libtiff-so-3/…
– karel
Oct 11 '17 at 4:27
add a comment |
If like me, you may be looking for the utils:
sudo apt-get install libtiff-tools
add a comment |
If like me, you may be looking for the utils:
sudo apt-get install libtiff-tools
add a comment |
If like me, you may be looking for the utils:
sudo apt-get install libtiff-tools
If like me, you may be looking for the utils:
sudo apt-get install libtiff-tools
edited Dec 3 '15 at 3:40
clearkimura
4,25021957
4,25021957
answered Dec 3 '15 at 1:18
tnilestniles
24617
24617
add a comment |
add a comment |
libtiff4 was upto 13.10 and 14.04 provides libtiff5.
To install it nonetheless, go to the download page and select libtiff4_3.9.7-2ubuntu1_amd64.deb.
Open terminal and, in the folder you downloaded the file, write:
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb
libtiff5 and libtiff4 are co-installable, so it will not write over the files of libtiff5.
add a comment |
libtiff4 was upto 13.10 and 14.04 provides libtiff5.
To install it nonetheless, go to the download page and select libtiff4_3.9.7-2ubuntu1_amd64.deb.
Open terminal and, in the folder you downloaded the file, write:
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb
libtiff5 and libtiff4 are co-installable, so it will not write over the files of libtiff5.
add a comment |
libtiff4 was upto 13.10 and 14.04 provides libtiff5.
To install it nonetheless, go to the download page and select libtiff4_3.9.7-2ubuntu1_amd64.deb.
Open terminal and, in the folder you downloaded the file, write:
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb
libtiff5 and libtiff4 are co-installable, so it will not write over the files of libtiff5.
libtiff4 was upto 13.10 and 14.04 provides libtiff5.
To install it nonetheless, go to the download page and select libtiff4_3.9.7-2ubuntu1_amd64.deb.
Open terminal and, in the folder you downloaded the file, write:
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb
libtiff5 and libtiff4 are co-installable, so it will not write over the files of libtiff5.
answered Sep 7 '15 at 14:31
ShubhamGGShubhamGG
111
111
add a comment |
add a comment |
sudo apt-get update
sudo apt-get install libtiff4
These commands will install libtiff on your 64 bit machine. You can use http://packages.ubuntu.com/ to search for the packages you need. In this case, it is http://packages.ubuntu.com/precise/libtiff4
add a comment |
sudo apt-get update
sudo apt-get install libtiff4
These commands will install libtiff on your 64 bit machine. You can use http://packages.ubuntu.com/ to search for the packages you need. In this case, it is http://packages.ubuntu.com/precise/libtiff4
add a comment |
sudo apt-get update
sudo apt-get install libtiff4
These commands will install libtiff on your 64 bit machine. You can use http://packages.ubuntu.com/ to search for the packages you need. In this case, it is http://packages.ubuntu.com/precise/libtiff4
sudo apt-get update
sudo apt-get install libtiff4
These commands will install libtiff on your 64 bit machine. You can use http://packages.ubuntu.com/ to search for the packages you need. In this case, it is http://packages.ubuntu.com/precise/libtiff4
answered Jun 25 '13 at 14:10
thefourtheyethefourtheye
4,33721630
4,33721630
add a comment |
add a comment |
I had a similar issue. So what solved it for me was to do:
sudo apt-get install libtiff-dev
add a comment |
I had a similar issue. So what solved it for me was to do:
sudo apt-get install libtiff-dev
add a comment |
I had a similar issue. So what solved it for me was to do:
sudo apt-get install libtiff-dev
I had a similar issue. So what solved it for me was to do:
sudo apt-get install libtiff-dev
answered May 2 '17 at 11:21
TukkTukk
1
1
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%2f312556%2fi-cant-install-libtiff-on-my-64-bit-ubuntu%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