Fedora - Blogger - Code Programming - Database - Design

Getting Start: Install SQLite

SQLite is an embedded relational database engine. Its developers call it a self-contained, serverless, zero-configuration and transactional SQL database engine. It is very popular and there are hundreds of millions copies worldwide in use today. In this post, we’ll see how to install it.

Install SQLite3 on Fedora:

1
$ yum install -y sqlite sqlite-devel

Install SQLite3 on Debian or Ubuntu:

1
$ apt-get install -y sqlite3 libsqlite3-dev

Install SQLite3 on Windows:

  • Go to SQLite3 download page, “Precompiled Binaries For Windows” section.
  • Download “sqlite-shell” and “sqlite-dll” archive files
  • Unpack them in C:\WINDOWS\system32 folder (or any other that is in your PATH)

Install SQLiteman on Fedora:

1
$ apt-get install sqliteman