我无法在 64 位 Ubuntu 上安装 libtiff

我无法在 64 位 Ubuntu 上安装 libtiff

libtiff当我尝试在 64 位 Ubuntu 上安装时,出现以下错误:

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

答案1

libtiff 没有安装候选项。您的选择是:

  • 对于 Ubuntu 23.04-24.10

    sudo apt install libtiff6

  • 对于 Ubuntu 14.04-22.04

    sudo apt install libtiff5

  • 对于 Ubuntu 12.04-13.10

    sudo apt-get install libtiff4

答案2

如果像我一样,您可能正在寻找实用程序:

sudo apt-get install libtiff-tools

答案3

我遇到了类似的问题。因此,我解决这个问题的方法是:

sudo apt-get install libtiff-dev

答案4

sudo apt-get update
sudo apt-get install libtiff4

这些命令将在你的 64 位计算机上安装 libtiff。你可以使用http://packages.ubuntu.com/搜索所需的软件包。在本例中,http://packages.ubuntu.com/precise/libtiff4

相关内容