panko command not found

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

Introduction

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

panko: command not found

or when using sudo you get the following error message

sudo: panko: command not found

Solutions to panko: command not found

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

In Ubuntu panko is provided by python3-pankoclient package.

python3-pankoclient is:

Panko is an event storage service that provides the ability to store and query event data generated by Ceilometer with potentially other sources.

This package contains the client library for Panko built on the Panko API. It provides a Python API (the pankoclient module) and a OSC (the openstackclient CLI) command-line tool (openstack event).

This package provides the Python 3.x module.

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

sudo apt-get -y install python3-pankoclient

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

You can also use apt command to install python3-pankoclient.

sudo apt -y install python3-pankoclient

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

sudo aptitude install python3-pankoclient

Summary

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