Return to Snippet

Revision: 9305
at October 29, 2008 21:36 by chrisaiv


Updated Code
$ curl http://www.sqlite.org/sqlite-3.5.4.tar.gz | tar zx
$ cd sqlite-3.5.4
$ ./configure --prefix=/usr/local
$ make
$ sudo make install

#Check that SQLite is installed properly
$ sqlite3 --version

Revision: 9304
at October 29, 2008 21:35 by chrisaiv


Initial Code
curl http://www.sqlite.org/sqlite-3.5.4.tar.gz | tar zx
cd sqlite-3.5.4
./configure --prefix=/usr/local
make
sudo make install

Initial URL


Initial Description
Simply open up terminal and run these commands one at a time.  You may need sudo or root access.

Initial Title
Installing SQLite3 in OsX Leopard

Initial Tags
osx

Initial Language
Bash