0% found this document useful (0 votes)
107 views

Sqlite - Installation: Install Sqlite On Windows

This document provides instructions for installing SQLite on Windows, Linux, and Mac OS X. For Windows, it describes downloading precompiled binaries and unzipping files to a SQLite folder in C:. For Linux, it notes that SQLite may already be installed but provides commands for downloading source code and compiling if needed. For Mac OS X, similar commands are given to download source code and compile SQLite if not already present.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
107 views

Sqlite - Installation: Install Sqlite On Windows

This document provides instructions for installing SQLite on Windows, Linux, and Mac OS X. For Windows, it describes downloading precompiled binaries and unzipping files to a SQLite folder in C:. For Linux, it notes that SQLite may already be installed but provides commands for downloading source code and compiling if needed. For Mac OS X, similar commands are given to download source code and compile SQLite if not already present.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Republic of the Philippines

Region V
Department of Education
PRIETO-DIAZ NATIONAL HIGH SCHOOL

SQLite - Installation
SQLite is famous for its great feature zero-configuration, which means no complex
setup or administration is needed. This chapter will take you through the process of
setting up SQLite on Windows, Linux and Mac OS X.

Install SQLite on Windows


 Step 1 − Go to SQLite download page, and download precompiled binaries from
Windows section.
 Step 2 − Download sqlite-shell-win32-*.zip and sqlite-dll-win32-*.zip zipped files.
 Step 3 − Create a folder C:\>sqlite and unzip above two zipped files in this
folder, which will give you sqlite3.def, sqlite3.dll and sqlite3.exe files.
 Step 4 − Add C:\>sqlite in your PATH environment variable and finally go to the
command prompt and issue sqlite3 command, which should display the
following result.
C:\>sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
Install SQLite on Linux
Today, almost all the flavours of Linux OS are being shipped with SQLite. So you just
issue the following command to check if you already have SQLite installed on your
machine.
$sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
If you do not see the above result, then it means you do not have SQLite installed on
your Linux machine. Following are the following steps to install SQLite −
 Step 1 − Go to SQLite download page and download sqlite-autoconf-*.tar.gz
from source code section.
 Step 2 − Run the following command −
$tar xvfz sqlite-autoconf-3071502.tar.gz
$cd sqlite-autoconf-3071502
$./configure --prefix=/usr/local
$make
$make install
The above command will end with SQLite installation on your Linux machine. Which
you can verify as explained above.

Install SQLite on Mac OS X


Though the latest version of Mac OS X comes pre-installed with SQLite but if you do
not have installation available then just follow these following steps −
 Step 1 − Go to SQLite download page, and download sqlite-autoconf-*.tar.gz
from source code section.
 Step 2 − Run the following command −
$tar xvfz sqlite-autoconf-3071502.tar.gz
$cd sqlite-autoconf-3071502
$./configure --prefix=/usr/local
$make
$make install
The above procedure will end with SQLite installation on your Mac OS X machine.
Which you can verify by issuing the following command −
$sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
Finally, you have SQLite command prompt where you can issue SQLite commands for
your exercises.

You might also like