Back to Setup

Sqlite

_partials/sqlite.md

latest468 B
Original Source

SQLite

In a few weeks, we'll talk about databases and SQL. SQLite is a database engine used to execute SQL queries on single-file databases. Let's install it:

In a terminal, execute the following commands:

bash
sudo apt-get install sqlite3 libsqlite3-dev pkg-config

Then run the following command:

bash
sqlite3 -version

:heavy_check_mark: If you see a version, you're good :+1:

:x: If not, ask for a teacher