statsvn command not found

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

Introduction

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

statsvn: command not found

or when using sudo you get the following error message

sudo: statsvn: command not found

Solutions to statsvn: command not found

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

In Ubuntu statsvn is provided by statsvn package.

statsvn is:

StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project evolution, e.g. the lines of code over time, contribution of each developer, the evolution of modules, directories, files, the time and days when most checkins happen, etc. It also shows the commit logs and integrates out of the box with ViewVc, BugZilla, Chora and others.

StatSVN generates a static suite of HTML or XDoc documents containing tables and chart images.

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

sudo apt-get -y install statsvn

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

You can also use apt command to install statsvn.

sudo apt -y install statsvn

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

sudo aptitude install statsvn

Summary

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