How To Install ruby-pygments.rb on Debian 10

Learn how to install ruby-pygments.rb on Debian 10 with this tutorial. ruby-pygments.rb is pygments wrapper for Ruby

Introduction

In this tutorial we learn how to install ruby-pygments.rb on Debian 10.

What is ruby-pygments.rb

ruby-pygments.rb is:

A Ruby wrapper for the Python pygments syntax highlighter.

pygments.rb works by talking over a simple pipe to a long-lived Python child process. This library replaces albino, as well as a version of pygments.rb that used an embedded Python interpreter.

Each Ruby process that runs has its own ‘personal Python’; for example, 4 Unicorn workers will have one Python process each. If a Python process dies, a new one will be spawned on the next pygments.rb request.

There are three methods to install ruby-pygments.rb on Debian 10. 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-pygments.rb 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-pygments.rb using apt-get by running the following command:

sudo apt-get -y install ruby-pygments.rb

Install ruby-pygments.rb Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ruby-pygments.rb using apt by running the following command:

sudo apt -y install ruby-pygments.rb

Install ruby-pygments.rb 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-pygments.rb using aptitude by running the following command:

sudo aptitude -y install ruby-pygments.rb

How To Uninstall ruby-pygments.rb on Debian 10

To uninstall only the ruby-pygments.rb package we can use the following command:

sudo apt-get remove ruby-pygments.rb

Uninstall ruby-pygments.rb And Its Dependencies

To uninstall ruby-pygments.rb and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove ruby-pygments.rb

Remove ruby-pygments.rb Configurations and Data

To remove ruby-pygments.rb configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge ruby-pygments.rb

Remove ruby-pygments.rb configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ruby-pygments.rb

Dependencies

ruby-pygments.rb have the following dependencies:

References

Summary

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