How To Install libarm-compute-doc on Kali Linux
Introduction
In this tutorial we learn how to install libarm-compute-doc
on Kali Linux.
What is libarm-compute-doc
libarm-compute-doc is:
Arm Compute Library is a software library for computer vision and machine learning. It is a collection of low-level functions optimized for Arm CPU and GPU architectures targeted at image processing, computer vision, and machine learning. Arm Compute Library is usable as a shared or static library.
Both 32 and 64-bit variants are supported: armhf (ARM v7, 32-bit), and arm64 (ARM v8, 64-bit, aarch64)
This package contains the Compute Library documentation as HTML.
There are three methods to install libarm-compute-doc
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 libarm-compute-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libarm-compute-doc
using apt-get
by running the following command:
sudo apt-get -y install libarm-compute-doc
Install libarm-compute-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libarm-compute-doc
using apt
by running the following command:
sudo apt -y install libarm-compute-doc
Install libarm-compute-doc 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 libarm-compute-doc
using aptitude
by running the following command:
sudo aptitude -y install libarm-compute-doc
How To Uninstall libarm-compute-doc on Kali Linux
To uninstall only the libarm-compute-doc
package we can use the following command:
sudo apt-get remove libarm-compute-doc
Uninstall libarm-compute-doc And Its Dependencies
To uninstall libarm-compute-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libarm-compute-doc
Remove libarm-compute-doc Configurations and Data
To remove libarm-compute-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libarm-compute-doc
Remove libarm-compute-doc configuration, data, and all of its dependencies
We can use the following command to remove libarm-compute-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libarm-compute-doc
Dependencies
libarm-compute-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libarm-compute-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.