How To Install libsharp0 on Kali Linux

In this tutorial we learn how to install libsharp0 on Kali Linux. libsharp0 is fast spherical harmonic transforms - C/C++ development library

Introduction

In this tutorial we learn how to install libsharp0 on Kali Linux.

What is libsharp0

libsharp0 is:

libsharp is a library for spherical harmonic transforms (SHTs), which evolved from the libpsht library, addressing several of its shortcomings, such as adding MPI support for distributed memory systems and SHTs of fields with arbitrary spin, but also supporting new developments in CPU instruction sets like the Advanced Vector Extensions (AVX) or fused multiply-accumulate (FMA) instructions. The library is implemented in portable C99 and provides an interface that can be easily accessed from other programming languages such as C++, Fortran, Python etc. Generally, libsharp’s performance is at least on par with that of its predecessor; however, significant improvements were made to the algorithms for scalar SHTs, which are roughly twice as fast when using the same CPU capabilities.

This package provides the dynamic library.

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

Install libsharp0 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libsharp0

Install libsharp0 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libsharp0

Install libsharp0 Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install libsharp0

How To Uninstall libsharp0 on Kali Linux

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

sudo apt-get remove libsharp0

Uninstall libsharp0 And Its Dependencies

To uninstall libsharp0 and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libsharp0

Remove libsharp0 Configurations and Data

To remove libsharp0 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libsharp0

Remove libsharp0 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsharp0

Dependencies

libsharp0 have the following dependencies:

References

Summary

In this tutorial we learn how to install libsharp0 package on Kali Linux using different package management tools: apt, apt-get and aptitude.