sqlite, aws, amazon linux 2,

How to install SQLite on Amazon Linux 2

Mar 30, 2022 · 1 min read · Post a comment

SQLite is one of the best minimalistic, lightweight, and powerful SQL database managers. It can be suitable for every application which doesn’t use a complex database structure. So today I will show you how to install SQLite on Amazon Linux 2.

Prerequisites

  • Amazon Linux 2
  • sudo privileges

Install SQLite on Amazon Linux 2

Step 1. Update system packages on Amazon Linux 2.

sudo yum update

Step 2. As a dependency install the epel repo.

sudo amazon-linux-extras install epel

Step 3. Install SQLite.

sudo yum install sqlite

Step 4. Verify installation.

sqlite3 --version

Output:

SQLite version 3.7.17

Conclusion

Feel free to leave a comment below and if you find this tutorial useful, follow our official channel on Telegram.