How To Install python3-pangolearn on Debian 12

Learn how to install python3-pangolearn on Debian 12 with this tutorial. python3-pangolearn is store of the trained model for pangolin to access

Introduction

In this tutorial we learn how to install python3-pangolearn on Debian 12.

What is python3-pangolearn

python3-pangolearn is:

Pangolin runs a multinomial logistic regression model trained against lineage assignments based on GISAID data.

Legacy pangolin runs using a guide tree and alignment hosted at cov-lineages/lineages. Some of this data is sourced from GISAID, but anonymised and encrypted to fit with guidelines. Appropriate permissions have been given and acknowledgements for the teams that have worked to provide the original SARS-CoV-2 genome sequences to GISAID are also hosted here.

This package contains the store of the trained model for pangolin.

There are three methods to install python3-pangolearn 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 python3-pangolearn Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install python3-pangolearn

Install python3-pangolearn Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-pangolearn

Install python3-pangolearn 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 python3-pangolearn using aptitude by running the following command:

sudo aptitude -y install python3-pangolearn

How To Uninstall python3-pangolearn on Debian 12

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

sudo apt-get remove python3-pangolearn

Uninstall python3-pangolearn And Its Dependencies

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

sudo apt-get -y autoremove python3-pangolearn

Remove python3-pangolearn Configurations and Data

To remove python3-pangolearn configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge python3-pangolearn

Remove python3-pangolearn configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-pangolearn

Dependencies

python3-pangolearn have the following dependencies:

References

Summary

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