sadisplay command not found

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

Introduction

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

sadisplay: command not found

or when using sudo you get the following error message

sudo: sadisplay: command not found

Solutions to sadisplay: command not found

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

In Ubuntu sadisplay is provided by python3-sadisplay package.

python3-sadisplay is:

Simple package for describing SQLAlchemy schema and displaying raw database tables. Supports relations detection using Foreign Key collums. Supports mapped class inheritance.

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

sudo apt-get -y install python3-sadisplay

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

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

sudo apt -y install python3-sadisplay

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

sudo aptitude install python3-sadisplay

Summary

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