html2wiki command not found

In this troubleshooting guide we learn how to fix html2wiki command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

html2wiki: command not found

or when using sudo you get the following error message

sudo: html2wiki: command not found

Solutions to html2wiki: command not found

How To Fix html2wiki: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu html2wiki is provided by libhtml-wikiconverter-perl package.

libhtml-wikiconverter-perl is:

HTML::WikiConverter is an HTML to wiki converter. It can convert HTML source into a variety of wiki markups, called wiki “dialects”.

This package contains the core modules. You will need at least one of the dialect packages for this package to be of any real use.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libhtml-wikiconverter-perl

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libhtml-wikiconverter-perl.

sudo apt -y install libhtml-wikiconverter-perl

Or if you have aptitude installed you can use the following command.

sudo aptitude install libhtml-wikiconverter-perl

Summary

In this tutorial we learn how to fix html2wiki command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.