wmk command not found

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

Introduction

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

wmk: command not found

or when using sudo you get the following error message

sudo: wmk: command not found

Solutions to wmk: command not found

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

In Ubuntu wmk is provided by wml package.

wml is:

WML (Website META Language) is a free and extensible Webdesigner’s off-line HTML generation toolkit for Unix. WML consists of a control frontend driving up to nine backends in a sequential pass-oriented filtering scheme. Each backend provides one particular core language. For maximum power WML additionally ships with a well-suited set of include files which provide higher-level features build on top of the backends core languages. While not trivial and idiot proof WML provides most of the core features real hackers always wanted for HTML generation.

iselect is needed for wmd, the WML Documentation browser. The remaining recommended or suggested packages are needed by optional passes or libraries.

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

sudo apt-get -y install wml

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

You can also use apt command to install wml.

sudo apt -y install wml

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

sudo aptitude install wml

Summary

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