How To Install ruby-unicode-plot on Debian 12

Learn how to install ruby-unicode-plot on Debian 12 with this tutorial. ruby-unicode-plot is Plot your data by Unicode characters

Introduction

In this tutorial we learn how to install ruby-unicode-plot on Debian 12.

What is ruby-unicode-plot

ruby-unicode-plot is:

UnicodePlot provides the feature to make charts with Unicode characters.

Supported charts: barplot, boxplot, densityplot, histogram, lineplot, scatterplot.

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

sudo apt-get -y install ruby-unicode-plot

Install ruby-unicode-plot Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ruby-unicode-plot

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

sudo aptitude -y install ruby-unicode-plot

How To Uninstall ruby-unicode-plot on Debian 12

To uninstall only the ruby-unicode-plot package we can use the following command:

sudo apt-get remove ruby-unicode-plot

Uninstall ruby-unicode-plot And Its Dependencies

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

sudo apt-get -y autoremove ruby-unicode-plot

Remove ruby-unicode-plot Configurations and Data

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

sudo apt-get -y purge ruby-unicode-plot

Remove ruby-unicode-plot configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ruby-unicode-plot

Dependencies

ruby-unicode-plot have the following dependencies:

References

Summary

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