rabbitvcs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rabbitvcs: command not found
or when using sudo you get the following error message
sudo: rabbitvcs: command not found
Solutions to rabbitvcs: command not found
How To Fix rabbitvcs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rabbitvcs is provided by rabbitvcs-cli package.
rabbitvcs-cli is:
RabbitVCS is a set of graphical tools written to provide simple and straightforward access to the version control systems SVN (Subversion) and Git. This is the command-line interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rabbitvcs-cli
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rabbitvcs-cli.
sudo apt -y install rabbitvcs-cli
Or if you have aptitude installed you can use the following command.
sudo aptitude install rabbitvcs-cli
Summary
In this tutorial we learn how to fix rabbitvcs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.