Installing sqlite3
- Download a version of sqlite3, e.g. sqlite-3.2.1.tar.gz, from www.sqlite.org.
- Open a terminal.
- To verify the package is there, type command ls (followed
by Enter).
- To unpack sqlite3 type tar zxf
sqlite-3.2.1.tar.gz
- To enter the newly created directory, type cd
sqlite-3.2.1
- To configure the sqlite, type ./configure --prefix=/usr
- Watch many messages, but no errors.
- To compile sqlite, type make
- Watch many messages, but no errors.
- To install sqlite, type sudo make
install, and provide the password.
- Watch many messages, but no errors.
- To go back to the home directory, type cd