luadoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
luadoc: command not found
or when using sudo you get the following error message
sudo: luadoc: command not found
Solutions to luadoc: command not found
How To Fix luadoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu luadoc is provided by luadoc package.
luadoc is:
LuaDoc is a documentation generator tool for Lua source code. It parses the declarations and documentation comments in a set of Lua source files and produces a set of XHTML pages describing the commented declarations and functions.
This package contains the luadoc library for Lua. For the command line utility, install the luadoc package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install luadoc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install luadoc.
sudo apt -y install luadoc
Or if you have aptitude installed you can use the following command.
sudo aptitude install luadoc
Summary
In this tutorial we learn how to fix luadoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.