How To Install python3-nbsphinx-link on Ubuntu 22.04

In this tutorial we learn how to install python3-nbsphinx-link on Ubuntu 22.04. python3-nbsphinx-link is sphinx extension for including notebooks outside of sphinx root

Introduction

In this tutorial we learn how to install python3-nbsphinx-link on Ubuntu 22.04.

python3-nbsphinx-link is:

Normally, Sphinx will only allow you to add files that are situated inside the source directory, but you might want to include files from another directory, for example a central ’examples’ folder. For RST files these can be linked with include directives inside another RST file. For notebooks, there’s nbsphinx-link.

There are three methods to install python3-nbsphinx-link on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

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

sudo apt-get update

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

sudo apt-get -y install python3-nbsphinx-link

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-nbsphinx-link using apt by running the following command:

sudo apt -y install python3-nbsphinx-link

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

sudo aptitude update

After updating apt database, We can install python3-nbsphinx-link using aptitude by running the following command:

sudo aptitude -y install python3-nbsphinx-link

To uninstall only the python3-nbsphinx-link package we can use the following command:

sudo apt-get remove python3-nbsphinx-link

To uninstall python3-nbsphinx-link and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove python3-nbsphinx-link

To remove python3-nbsphinx-link configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge python3-nbsphinx-link

We can use the following command to remove python3-nbsphinx-link configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-nbsphinx-link

References

Summary

In this tutorial we learn how to install python3-nbsphinx-link package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.