otcldoc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
otcldoc: command not found
or when using sudo you get the following error message
sudo: otcldoc: command not found
Solutions to otcldoc: command not found
How To Fix otcldoc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu otcldoc is provided by tclcl package.
tclcl is:
TclCL (Tcl with classes) is a Tcl/C++ interface used by Mash, vic, vat, rtp_play and nsnam. It provides a layer of C++ glue over OTcl.
This package contains bin file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tclcl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tclcl.
sudo apt -y install tclcl
Or if you have aptitude installed you can use the following command.
sudo aptitude install tclcl
Summary
In this tutorial we learn how to fix otcldoc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.