cppman command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cppman: command not found
or when using sudo you get the following error message
sudo: cppman: command not found
Solutions to cppman: command not found
How To Fix cppman: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cppman is provided by cppman package.
cppman is:
cppman is a tool to download C++ 98/11 manual from cplusplus.com. It creates a similar interface to the man command, and provides syntax highlight, hyperlink features.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cppman
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cppman.
sudo apt -y install cppman
Or if you have aptitude installed you can use the following command.
sudo aptitude install cppman
Summary
In this tutorial we learn how to fix cppman command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.