I tried sudo apt update
followed by sudo apt install graphviz
. But it failed with 404 Not found for libtiff5
.
So I tried installing libtiff5
separately
sudo apt update
sudo apt install libtiff5
gives
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libjbig0
The following NEW packages will be installed:
libjbig0 libtiff5
0 upgraded, 2 newly installed, 0 to remove and 11 not upgraded.
Need to get 175 kB of archives.
After this operation, 615 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libjbig0 amd64 2.1-3.1 [26.6 kB]
Err:2 http://security.ubuntu.com/ubuntu xenial-security/main amd64 libtiff5 amd64 4.0.6-1ubuntu0.5
404 Not Found [IP: 91.189.88.149 80]
Err:2 http://security.ubuntu.com/ubuntu xenial-security/main amd64 libtiff5 amd64 4.0.6-1ubuntu0.5
404 Not Found [IP: 91.189.88.149 80]
Fetched 26.6 kB in 0s (250 kB/s)
E: Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/t/tiff/libtiff5_4.0.6-1ubuntu0.5_amd64.deb 404 Not Found [IP: 91.189.88.149 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
So I tried
sudo apt update
sudo apt install libtiff5 --fix-missing
But the same error gets thrown. Looks like I'm missing something silly, aren't I?
EDIT: This is not a problem with graphviz itself. In a fresh ubuntu docker, it installs fine. I'm trying to understand why it fails and fix its installation on my machine.