Installing SQLite in Ubuntu is pretty simple and all you have to do is using the following command to download and install the package.
$ sudo apt-get install sqlite3 libsqlite3-dev
Once it’s downloaded and installed, type the following command to create a SQLite database file. I called the database file — askyb.db. You should see the following screenshot:

Use the ls command to list the file created and you should obsered that askyb.db was created in the directory.
1 Comment to Installing SQLite in Ubuntu