sqlformat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sqlformat: command not found
or when using sudo you get the following error message
sudo: sqlformat: command not found
Solutions to sqlformat: command not found
How To Fix sqlformat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sqlformat is provided by sqlformat package.
sqlformat is:
The sqlformat command-line tool can be used to reformat SQL file according to specified options or prepare a snippet in some programming language (only Python and PHP currently supported).
To fix this problem, we can install more using the command below.
sudo apt-get -y install sqlformat
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sqlformat.
sudo apt -y install sqlformat
Or if you have aptitude installed you can use the following command.
sudo aptitude install sqlformat
Summary
In this tutorial we learn how to fix sqlformat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.