blazar command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
blazar: command not found
or when using sudo you get the following error message
sudo: blazar: command not found
Solutions to blazar: command not found
How To Fix blazar: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu blazar is provided by python3-blazarclient package.
python3-blazarclient is:
Blazar is a resource reservation service for OpenStack. Blazar enables users to reserve a specific type/amount of resources for a specific time period and it leases these resources to users based on their reservations.
This is a client library for the OpenStack Blazar API. It provides a Python API (the blazarclient module) and a command-line tool (blazar).
This package contains the Python 3 module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-blazarclient
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-blazarclient.
sudo apt -y install python3-blazarclient
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-blazarclient
Summary
In this tutorial we learn how to fix blazar command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.