cvsgraph command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cvsgraph: command not found
or when using sudo you get the following error message
sudo: cvsgraph: command not found
Solutions to cvsgraph: command not found
How To Fix cvsgraph: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cvsgraph is provided by cvsgraph package.
cvsgraph is:
CvsGraph was inspired by the graph option from WinCVS. It represents the revisions and branches in a CVS/RCS file in a graphical tree structure, also listing any tags associated with any given revision.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cvsgraph
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cvsgraph.
sudo apt -y install cvsgraph
Or if you have aptitude installed you can use the following command.
sudo aptitude install cvsgraph
Summary
In this tutorial we learn how to fix cvsgraph command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.