# Sqlit3 Installation

## Installation :&#x20;

1. Download Sqlite3  [Precompiled Binaries for Windows](https://www.sqlite.org/download.html)  .&#x20;
2. copy sqlite3 file
3. Create A New Folder Inside C/sqlite .
4. past sqlite3 file Inside C/sqlite.
5. Check The Installation: &#x20;
6. Open cmd and type sqlite3 .If show below text sqlite3 install Successful.

```bash
SQLite version 3.40.1 2022-12-28 14:03:47
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database. 
```

## How To Use Sqlite3 In Python

**Sqlite3 connection driver already inbuilt in python3 . Only need import sqlite3.**

```python
import sqlite3
```

<br>
