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

 

Leave a Comment