How Do You Troubleshoot an Error about sqlite3 Not Being Installed when It Is Actually Installed?

Problem scenario
You have installed sqlite3. It is a version above 3.22.0. But when you run "make deps" you see this error message:

checking for SQLITE… no
configure: error: Package requirements (sqlite3 >= 3.22.0) were not met:
No package 'sqlite3' found

What should you do?

Solution
Run this:
sudo apt -y install libsqlite3-dev

Leave a comment

Your email address will not be published. Required fields are marked *