SQLite3

Installing sqlitebrowser on RHEL7 / CentOS7

Install some dependencies I was also using devtoolset-8 for GCC 8.3 (default in CentOS 7 is GCC 4.8). I’m guessing GCC 4.8 will probably build OK, but I didn’t test this. Instructions for installing and enabling devtoolset-8 are here. Prepare, acquire, configure, build, install Now, there should be a “sqlitebrowser” command to start the app …

Installing sqlitebrowser on RHEL7 / CentOS7 Read More »

SQLite3 on RHEL7/CentOS7

Building and installing SQLite3 mkdir -p ~/src && cd ~/src wget https://www.sqlite.org/2018/sqlite-autoconf-3250200.tar.gz tar xf sqlite-autoconf-3250200.tar.gz cd sqlite-autoconf-3250200 ./configure && make sudo make install