Installation problem: Unmet dependencies error in Colab

Hi Tiago,

Since a couple days ago, I get unmet dependencies error when trying to install graph-tool on Colab. I use the Colab notebook instructions in the document with no change.

!cat /etc/*release

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=22.04
DISTRIB_CODENAME=jammy
DISTRIB_DESCRIPTION="Ubuntu 22.04.2 LTS
!echo "deb http://downloads.skewed.de/apt focal main" >> /etc/apt/sources.list
!apt-key adv --keyserver keyserver.ubuntu.com --recv-key 612DEFB798507F25
!apt-get update
!apt-get install python3-graph-tool python3-matplotlib python3-cairo

Error: The following packages have unmet dependencies:
 python3-graph-tool : Depends: libboost-context1.71.0 but it is not installable
                      Depends: libboost-iostreams1.71.0 but it is not installable
                      Depends: libboost-python1.71.0 but it is not installable
                      Depends: libboost-python1.71.0-py38 but it is not installable
                      Depends: libboost-regex1.71.0-icu66 but it is not installable
                      Recommends: libgv-python but it is not installable
                      Recommends: python-matplotlib but it is not installable
                      Recommends: python-cairo but it is not installable
                      Recommends: python-gi-cairo but it is not installable
                      Recommends: python-gi but it is not installable
                      Recommends: gir1.2-gtk-3.0 but it is not going to be installed

Thank you,

See the markdown syntax here for more formatting options: Markdown Reference

It seems colab replaced focal with jammy. Just replace focal with jammy in the installation steps.

That worked! Thank you very much