Installing SQLite For Linux - iat-cener/tonatiuh GitHub Wiki

Installing SQLite for Linux

SQLite is library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. Here you will find instructions to install the SQLite library in your computer and make this library available for the development of Tonatiuh.

Details

  • First, ensure that your package list is up to date before installing any new libraries:
sudo apt-get update
  • Now, to install the SQLite development package run:
sudo apt-get install libsqlite3-dev
  • After installation, you can verify that the SQLite development files are correctly installed by checking for the sqlite3.h header file:
ls /usr/include/sqlite3.h

Once the SQLite library is installed the next step is to install the resources to work with Tonatiuh into a Integrated Development Environment (IDE). To do it, first, we are going to install Git by Installing Git For Linux.


Linux Configuration | Wiki Home