svn2cl command not found

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

Introduction

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

svn2cl: command not found

or when using sudo you get the following error message

sudo: svn2cl: command not found

Solutions to svn2cl: command not found

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

In Ubuntu svn2cl is provided by svn2cl package.

svn2cl is:

This tool generates a classic GNU-style ChangeLog from the log messages in a Subversion repository. It works as a wrapper around the ‘svn log’ command, parsing the XML output with an XSLT stylesheet. Alternatively it can generate HTML output.

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

sudo apt-get -y install svn2cl

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

You can also use apt command to install svn2cl.

sudo apt -y install svn2cl

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

sudo aptitude install svn2cl

Summary

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