How To Install libantic-dev on Ubuntu 22.04

In this tutorial we learn how to install libantic-dev on Ubuntu 22.04. libantic-dev is Algebraic Number Theory In C - libdev

Introduction

In this tutorial we learn how to install libantic-dev on Ubuntu 22.04.

What is libantic-dev

libantic-dev is:

ANTIC is an Algebraic Number Theory library In C.

This package contains static libraries and symbolic links that developers using the ANTIC library will need.

There are three methods to install libantic-dev 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.

Install libantic-dev Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libantic-dev

Install libantic-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libantic-dev

Install libantic-dev 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libantic-dev

How To Uninstall libantic-dev on Ubuntu 22.04

To uninstall only the libantic-dev package we can use the following command:

sudo apt-get remove libantic-dev

Uninstall libantic-dev And Its Dependencies

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

sudo apt-get -y autoremove libantic-dev

Remove libantic-dev Configurations and Data

To remove libantic-dev configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge libantic-dev

Remove libantic-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libantic-dev

References

Summary

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