How To Install ruby-html-pipeline on Ubuntu 18.04

In this tutorial we learn how to install ruby-html-pipeline on Ubuntu 18.04. ruby-html-pipeline is GitHub HTML processing filters and utilities

Introduction

In this tutorial we learn how to install ruby-html-pipeline on Ubuntu 18.04.

What is ruby-html-pipeline

ruby-html-pipeline is:

Helpers for processing content through a chain of filters. This module includes a small framework for defining DOM based content filters and applying them to user provided content.

There are three methods to install ruby-html-pipeline on Ubuntu 18.04. 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-html-pipeline 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-html-pipeline using apt-get by running the following command:

sudo apt-get -y install ruby-html-pipeline

Install ruby-html-pipeline Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ruby-html-pipeline

Install ruby-html-pipeline 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install ruby-html-pipeline using aptitude by running the following command:

sudo aptitude -y install ruby-html-pipeline

How To Uninstall ruby-html-pipeline on Ubuntu 18.04

To uninstall only the ruby-html-pipeline package we can use the following command:

sudo apt-get remove ruby-html-pipeline

Uninstall ruby-html-pipeline And Its Dependencies

To uninstall ruby-html-pipeline and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove ruby-html-pipeline

Remove ruby-html-pipeline Configurations and Data

To remove ruby-html-pipeline configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge ruby-html-pipeline

Remove ruby-html-pipeline configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ruby-html-pipeline

References

Summary

In this tutorial we learn how to install ruby-html-pipeline package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.