repdoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
repdoc: command not found
or when using sudo you get the following error message
sudo: repdoc: command not found
Solutions to repdoc: command not found
How To Fix repdoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu repdoc is provided by librep-dev package.
librep-dev is:
rep is a dialect of Lisp, designed to be used both as an extension language for applications and as a general purpose programming language.
It was originally written to be mostly-compatible with Emacs Lisp, but has subsequently diverged markedly. Its aim is to combine the best features of Scheme and Common Lisp and provide an environment that is comfortable for implementing both small and large scale systems. It tries to be a “pragmatic” programming language.
This package contains the files needed to embed the rep interpreter in an application.
To fix this problem, we can install more using the command below.
sudo apt-get -y install librep-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install librep-dev.
sudo apt -y install librep-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install librep-dev
Summary
In this tutorial we learn how to fix repdoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.