How To Install libarmnntfliteparser-dev on Kali Linux

In this tutorial we learn how to install libarmnntfliteparser-dev on Kali Linux. libarmnntfliteparser-dev is Arm NN is an inference engine for CPUs, GPUs and NPUs

Introduction

In this tutorial we learn how to install libarmnntfliteparser-dev on Kali Linux.

What is libarmnntfliteparser-dev

libarmnntfliteparser-dev is:

Arm NN is a set of tools that enables machine learning workloads on any hardware. It provides a bridge between existing neural network frameworks and whatever hardware is available and supported. On arm architectures (arm64 and armhf) it utilizes the Arm Compute Library to target Cortex-A CPUs, Mali GPUs and Ethos NPUs as efficiently as possible. On other architectures/hardware it falls back to unoptimised functions.

This release supports Caffe, TensorFlow, TensorFlow Lite, and ONNX. Arm NN takes networks from these frameworks, translates them to the internal Arm NN format and then through the Arm Compute Library, deploys them efficiently on Cortex-A CPUs, and, if present, Mali GPUs.

This is the development package containing header files.

There are three methods to install libarmnntfliteparser-dev 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 libarmnntfliteparser-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 libarmnntfliteparser-dev using apt-get by running the following command:

sudo apt-get -y install libarmnntfliteparser-dev

Install libarmnntfliteparser-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libarmnntfliteparser-dev

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

sudo aptitude -y install libarmnntfliteparser-dev

How To Uninstall libarmnntfliteparser-dev on Kali Linux

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

sudo apt-get remove libarmnntfliteparser-dev

Uninstall libarmnntfliteparser-dev And Its Dependencies

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

sudo apt-get -y autoremove libarmnntfliteparser-dev

Remove libarmnntfliteparser-dev Configurations and Data

To remove libarmnntfliteparser-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libarmnntfliteparser-dev

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

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

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

Dependencies

libarmnntfliteparser-dev have the following dependencies:

References

Summary

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