statcvs command not found

In this troubleshooting guide we learn how to fix statcvs command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

statcvs: command not found

or when using sudo you get the following error message

sudo: statcvs: command not found

Solutions to statcvs: command not found

How To Fix statcvs: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu statcvs is provided by statcvs package.

statcvs is:

StatCvs retrieves information from a CVS repository and generates various tables and charts describing the project development, e.g. timeline for the lines of code, contribution of each developer etc.

The current version of StatCvs generates a static suite of HTML documents containing tables and chart images. StatCvs is open source software, released under the terms oft the LGPL. StatCvs uses JFreeChart to generate charts.

To fix this problem, we can install more using the command below.

sudo apt-get -y install statcvs

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install statcvs.

sudo apt -y install statcvs

Or if you have aptitude installed you can use the following command.

sudo aptitude install statcvs

Summary

In this tutorial we learn how to fix statcvs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.