Skip to content

Instantly share code, notes, and snippets.

@Nebuchadrezzar
Created April 26, 2023 16:08
Show Gist options
  • Save Nebuchadrezzar/900c9f51e1777e1f1ee231c653a58164 to your computer and use it in GitHub Desktop.
Save Nebuchadrezzar/900c9f51e1777e1f1ee231c653a58164 to your computer and use it in GitHub Desktop.
Build sqlite on Amazon Linux 2
# Install dependencies
sudo yum install gcc
# Download sqlite3:
curl -LOk https://www.sqlite.org/2022/sqlite-autoconf-3380500.tar.gz
tar xzf sqlite-autoconf-3380500.tar.gz
# Configure and compile:
cd ./sqlite-autoconf-3320300 && ./configure
make
sudo make install
# Confirm
source ~/.bashrc && source ~/.zshrc
sqlite3 -version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment