How To Install pd-iemtab on Debian 9

In this tutorial we learn how to install pd-iemtab on Debian 9. pd-iemtab is Pd-objects for table manipulation

Introduction

In this tutorial we learn how to install pd-iemtab on Debian 9.

What is pd-iemtab

pd-iemtab is:

This is a collection of high-performance objects to manipulate tables/arrays from within Pd.

It supports:

  • setting of constant values
  • copy and reverse arrays
  • find minimum and maximum values
  • basic binops: compare, add, subtract multiplication, division
  • unops: square root, power-to-db, db-to-rms
  • complex math
  • FFT, inverse FFT, convolution, cross-correlation

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

Install pd-iemtab Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install pd-iemtab

Install pd-iemtab Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install pd-iemtab

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

sudo aptitude -y install pd-iemtab

How To Uninstall pd-iemtab on Debian 9

To uninstall only the pd-iemtab package we can use the following command:

sudo apt-get remove pd-iemtab

Uninstall pd-iemtab And Its Dependencies

To uninstall pd-iemtab and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove pd-iemtab

Remove pd-iemtab Configurations and Data

To remove pd-iemtab configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge pd-iemtab

Remove pd-iemtab configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge pd-iemtab

Dependencies

pd-iemtab have the following dependencies:

References

Summary

In this tutorial we learn how to install pd-iemtab package on Debian 9 using different package management tools: apt, apt-get and aptitude.