Pre-Class TODO's

Contributors: Conner Swenberg

1. Download Demo Starter Code

file-archive
3KB
archive

2. Install SQLite3

We will be creating a formal database and will be using the SQLite3 package to create and manipulate our tables.

Try typing sqlite3 in your Command Line (Terminal, Powershell, etc.). If the command runs successfully, you do not need to take any further actions.

Otherwise, you can download SQLite herearrow-up-right. You should install the package under Precompiled Binaries for your respective operating system.

Mac Installation

For MacOS, you would download one of two packages under Precompiled Binaries for Mac OS X, based on your CPU architecture: sqlite-tools-osx-arm64, which you would use if your Mac has Apple Silicon (ARM), which is typical of most modern Macs (M1, M2, M3 Macs); sqlite-tools-osx-x64, which you would use if your Mac has an Intel CPU, which is typical of older Macs (pre-2020).

Windows Installation

For Windows, you would download the package sqlite-tools-win-x64 under Precompiled Binaries for Windows.

You can reference thisarrow-up-right for installation instructions after downloading the zip file, which will walk you through some shell commands to run.

Last updated

Was this helpful?