html-pipeline command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
html-pipeline: command not found
or when using sudo you get the following error message
sudo: html-pipeline: command not found
Solutions to html-pipeline: command not found
How To Fix html-pipeline: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu html-pipeline is provided by ruby-html-pipeline package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-html-pipeline
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-html-pipeline.
sudo apt -y install ruby-html-pipeline
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-html-pipeline
Summary
In this tutorial we learn how to fix html-pipeline command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.