html2wml command not found

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

Introduction

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

html2wml: command not found

or when using sudo you get the following error message

sudo: html2wml: command not found

Solutions to html2wml: command not found

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

In Ubuntu html2wml is provided by html2wml package.

html2wml is:

html2wml converts HTML pages to WML or i-mode(tm) pages, suitable for being viewed on a WAP or i-mode devices, e.g. cell phones. The conversion can be done either on the command line to create static pages or on-the-fly by calling this program as a CGI.

Different WAP browsers are available to view the results of html2wml, e.g. the wmlbrowser add-on for iceweasel (aka firefox) and wapua.

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

sudo apt-get -y install html2wml

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

You can also use apt command to install html2wml.

sudo apt -y install html2wml

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

sudo aptitude install html2wml

Summary

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