How To Install vart-bin on Debian 12

Learn how to install vart-bin on Debian 12 with this tutorial. vart-bin is Vitis AI RuntTime library (utilities)

Introduction

In this tutorial we learn how to install vart-bin on Debian 12.

What is vart-bin

vart-bin is:

Vitis AI RunTime is an application level runtime interface for DPU IPs based on XRT. It use XIR subgraph as input, and runs it on different targets. There are also emulators implemented with same interface to make debuging eaiser.

This package contains the utility files for Vitis AI RuntTime library.

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

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

sudo apt-get update

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

sudo apt-get -y install vart-bin

Install vart-bin Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install vart-bin

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

sudo aptitude -y install vart-bin

How To Uninstall vart-bin on Debian 12

To uninstall only the vart-bin package we can use the following command:

sudo apt-get remove vart-bin

Uninstall vart-bin And Its Dependencies

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

sudo apt-get -y autoremove vart-bin

Remove vart-bin Configurations and Data

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

sudo apt-get -y purge vart-bin

Remove vart-bin configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge vart-bin

Dependencies

vart-bin have the following dependencies:

References

Summary

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