How To Install furo on Debian 12

Learn how to install furo on Debian 12 with this tutorial. furo is clean customisable Sphinx documentation theme

Introduction

In this tutorial we learn how to install furo on Debian 12.

What is furo

furo is:

Furo is a clean customisable Sphinx documentation theme …

  • Intentionally minimal ?? the most important thing is the content, not the scaffolding around it.
  • Responsive ?? adapting perfectly to the available screen space, to work on all sorts of devices.
  • Customisable ?? change the color palette, font families, logo and more!
  • Easy to navigate ?? with carefully-designed sidebar navigation and inter-page links.
  • Good looking content ?? through clear typography and well-stylised elements.
  • Good looking search ?? helps readers find what they want quickly.
  • Biased for smaller docsets ?? intended for smaller documentation sets, where presenting the entire hierarchy in the sidebar is not overwhelming.

There are three methods to install furo on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install furo Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install furo using apt-get by running the following command:

sudo apt-get -y install furo

Install furo Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install furo using apt by running the following command:

sudo apt -y install furo

Install furo Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install furo using aptitude by running the following command:

sudo aptitude -y install furo

How To Uninstall furo on Debian 12

To uninstall only the furo package we can use the following command:

sudo apt-get remove furo

Uninstall furo And Its Dependencies

To uninstall furo and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove furo

Remove furo Configurations and Data

To remove furo configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge furo

Remove furo configuration, data, and all of its dependencies

We can use the following command to remove furo configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge furo

Dependencies

furo have the following dependencies:

References

Summary

In this tutorial we learn how to install furo package on Debian 12 using different package management tools: apt, apt-get and aptitude.