wmlhtml command not found

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

Introduction

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

wmlhtml: command not found

or when using sudo you get the following error message

sudo: wmlhtml: command not found

Solutions to wmlhtml: command not found

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

In Ubuntu wmlhtml is provided by wap-wml-tools package.

wap-wml-tools is:

wml-tools is a suite of small programs designed to help in the construction of WAP WML decks. The suite currently comprises: * wmlc - a WML bytecode compiler * wmld - a WML bytecode decompiler * wmlv - a very simple text-based WML deck viewer * wbmp2xpm - a WBMP to XPM converter * wmlhtml - a simple WML deck to HTML converter * rdfwml - an RDF channel to WML deck converter

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

sudo apt-get -y install wap-wml-tools

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

You can also use apt command to install wap-wml-tools.

sudo apt -y install wap-wml-tools

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

sudo aptitude install wap-wml-tools

Summary

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