How To Install and Use SQLite on Ubuntu!

How To Install and Use SQLite on Ubuntu!

Written by Adam. R on Sep 13th, 2021 Views Report Post

What is SQLite?

SQLite is a free, cross-platform database management system. It is popular for its efficiency and ability to interface with many different programming languages.


Installation

To install the SQLite command-line interface on Ubuntu, first update your package list:

sudo apt update

Now install SQLite:

sudo apt install sqlite3

To verify the installation, check the software’s version:

sqlite3 --version

You will receive an output like this:

3.31.1 2020-01-27 19:55:54 3bfa9cc97da10598521b342961df8f5f68c7388fa117345eeb516eaa837balt1

The output may vary if SQLite3 updates. But while writing this is the current version.

With SQLite installed, you are now ready to create a new database.


I may create a tutorial on SQLite in the near future.


That’s it, you have successfully installed SQLite on your Ubuntu Server and you can start using it!

If you found this usful then please comment and follow me! Also check out my website where I also post everything from here

Comments (0)