cyborg command not found

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

Introduction

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

cyborg: command not found

or when using sudo you get the following error message

sudo: cyborg: command not found

Solutions to cyborg: command not found

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

In Ubuntu cyborg is provided by python3-cyborgclient package.

python3-cyborgclient is:

Python-cyborgclient is a Python bindings to the OpenStack Cyborg API. There’s a Python API (the cyborgclient module), and a command-line script (cyborg). Each implements 100% of the OpenStack Cyborg API.

Cyborg provides a general management framework for accelerators such as FPGA, GPU, SoCs, NVMe SSDs, CCIX caches, DPDK/SPDK, pmem and so forth.

This package contains the Python 3.x module.

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

sudo apt-get -y install python3-cyborgclient

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

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

sudo apt -y install python3-cyborgclient

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

sudo aptitude install python3-cyborgclient

Summary

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