brz command not found

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

Introduction

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

brz: command not found

or when using sudo you get the following error message

sudo: brz: command not found

Solutions to brz: command not found

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

In Ubuntu brz is provided by brz package.

brz is:

Breezy is a distributed version control system designed to be easy to use and intuitive, able to adapt to many file formats and workflows, reliable, and easily extendable.

Out of the box, Breezy supports both the Git and Bazaar repository formats.

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

sudo apt-get -y install brz

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

You can also use apt command to install brz.

sudo apt -y install brz

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

sudo aptitude install brz

Summary

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