docknot command not found

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

Introduction

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

docknot: command not found

or when using sudo you get the following error message

sudo: docknot: command not found

Solutions to docknot: command not found

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

In Ubuntu docknot is provided by docknot package.

docknot is:

DocKnot is a static web site generator built around a macro language called thread, with special support for managing software releases. In addition to building a web site, it can generate distribution tarballs and consistent human-readable software package documentation from a YAML metadata file and templates. The goal is to generate both web pages and distributed documentation files (such as README) from the same source, using templates for consistency across multiple packages.

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

sudo apt-get -y install docknot

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

You can also use apt command to install docknot.

sudo apt -y install docknot

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

sudo aptitude install docknot

Summary

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