Skip to content

Instantly share code, notes, and snippets.

@alazyer
Forked from fabrizioc1/install-sqlite.sh
Last active December 31, 2015 02:59
Show Gist options
  • Save alazyer/7924920 to your computer and use it in GitHub Desktop.
Save alazyer/7924920 to your computer and use it in GitHub Desktop.
# The YUM package is too old for use with ruby-sqlite3, use the autoconf package from www.sqlite.org
cd /opt
wget http://www.sqlite.org/sqlite-autoconf-3070701.tar.gz
tar xvzf sqlite-autoconf-3070701.tar.gz
ln -s /opt/sqlite-autoconf-3070701 /opt/sqlite3
cd /opt/sqlite3
./configure --prefix=/opt/sqlite3
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment