skeema command not found

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

Introduction

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

skeema: command not found

or when using sudo you get the following error message

sudo: skeema: command not found

Solutions to skeema: command not found

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

In Ubuntu skeema is provided by skeema package.

skeema is:

Skeema is a tool for managing MySQL tables and schema changes in a declarative fashion using pure SQL. It provides a CLI tool allowing you to:

  • Export CREATE TABLE statements to the filesystem, for tracking in a repo (git, hg, svn, etc)
  • Diff changes in the schema repo against live DBs to automatically generate DDL
  • Manage multiple environments (e.g. dev, staging, prod) and keep them in sync with ease
  • Configure use of online schema change tools, such as pt-online-schema-change, for performing ALTERs
  • Apply configurable linter rules to proactively catch schema design problems and enforce company policies Skeema supports a pull-request-based workflow for schema change submission, review, and execution. This permits your team to manage schema changes in exactly the same way as you manage code changes.

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

sudo apt-get -y install skeema

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

You can also use apt command to install skeema.

sudo apt -y install skeema

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

sudo aptitude install skeema

Summary

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