SQLite Browser without SQLCipher support in Ubuntu SQLite Browser without SQLCipher support in Ubuntu sqlite sqlite

SQLite Browser without SQLCipher support in Ubuntu


The solution is to build SQLite Browser with libsqlcipher-dev package.

Here the steps required:

  1. First install the libsqlcipher-dev package.
sudo apt-get install libsqlcipher-dev
  1. Then install requisites for building SQLite Browser.
sudo apt install build-essential git cmake libsqlite3-dev \                   qt5-default qttools5-dev qttools5-dev-tools
  1. Clone repository.
git clone https://github.com/sqlitebrowser/sqlitebrowser
  1. Build steps:
cd sqlitebrowsermkdir buildcd buildcmake -Dsqlcipher=1 -Wno-dev ..makesudo make install

This should complete without errors, giving you a binary file called sqlitebrowser which has now SQLCipher support.