emacsql-sqlite command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
emacsql-sqlite: command not found
or when using sudo you get the following error message
sudo: emacsql-sqlite: command not found
Solutions to emacsql-sqlite: command not found
How To Fix emacsql-sqlite: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu emacsql-sqlite is provided by elpa-emacsql-sqlite package.
elpa-emacsql-sqlite is:
EmacSQL is a high level Emacs Lisp frontend for SQLite (primarily), PostgreSQL, MySQL, and potentially other SQL databases.
This package contains the SQLite backend.
To fix this problem, we can install more using the command below.
sudo apt-get -y install elpa-emacsql-sqlite
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install elpa-emacsql-sqlite.
sudo apt -y install elpa-emacsql-sqlite
Or if you have aptitude installed you can use the following command.
sudo aptitude install elpa-emacsql-sqlite
Summary
In this tutorial we learn how to fix emacsql-sqlite command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.