How To Install ruby-attribute-normalizer on Debian 12

Learn how to install ruby-attribute-normalizer on Debian 12 with this tutorial. ruby-attribute-normalizer is Adds the ability to normalize attributes

Introduction

In this tutorial we learn how to install ruby-attribute-normalizer on Debian 12.

What is ruby-attribute-normalizer

ruby-attribute-normalizer is:

This gem adds the ability to normalize attributes cleanly with code blocks and predefined normalizers

There are three methods to install ruby-attribute-normalizer 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 ruby-attribute-normalizer Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install ruby-attribute-normalizer

Install ruby-attribute-normalizer Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ruby-attribute-normalizer using apt by running the following command:

sudo apt -y install ruby-attribute-normalizer

Install ruby-attribute-normalizer 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 ruby-attribute-normalizer using aptitude by running the following command:

sudo aptitude -y install ruby-attribute-normalizer

How To Uninstall ruby-attribute-normalizer on Debian 12

To uninstall only the ruby-attribute-normalizer package we can use the following command:

sudo apt-get remove ruby-attribute-normalizer

Uninstall ruby-attribute-normalizer And Its Dependencies

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

sudo apt-get -y autoremove ruby-attribute-normalizer

Remove ruby-attribute-normalizer Configurations and Data

To remove ruby-attribute-normalizer configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge ruby-attribute-normalizer

Remove ruby-attribute-normalizer configuration, data, and all of its dependencies

We can use the following command to remove ruby-attribute-normalizer configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ruby-attribute-normalizer

Dependencies

ruby-attribute-normalizer have the following dependencies:

References

Summary

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