This repository was archived by the owner on Apr 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +25
-11
lines changed
Expand file tree Collapse file tree 1 file changed +25
-11
lines changed Original file line number Diff line number Diff line change @@ -82,17 +82,31 @@ The communication between the SQLite MCP server and your local SQLite database h
8282- Git (` git --version ` to check)
8383- SQLite (` sqlite3 --version ` to check)
8484
85- <Accordion title = " Need to install the prerequisites?" >
86- ``` bash
87- # Using Homebrew
88- brew install uv git sqlite3
89-
90- # Or download directly:
91- # uv: https://docs.astral.sh/uv/
92- # Git: https://git-scm.com
93- # SQLite: https://www.sqlite.org/download.html
94- ```
95- </Accordion >
85+ <AccordionGroup >
86+ <Accordion title = " Installing prerequisites (macOS)" >
87+ ``` bash
88+ # Using Homebrew
89+ brew install uv git sqlite3
90+
91+ # Or download directly:
92+ # uv: https://docs.astral.sh/uv/
93+ # Git: https://git-scm.com
94+ # SQLite: https://www.sqlite.org/download.html
95+ ```
96+ </Accordion >
97+ <Accordion title = " Installing prerequisites (Windows)" >
98+ ``` powershell
99+ # Using winget
100+ winget install --id=astral-sh.uv -e
101+ winget install git.git sqlite.sqlite
102+
103+ # Or download directly:
104+ # uv: https://docs.astral.sh/uv/
105+ # Git: https://git-scm.com
106+ # SQLite: https://www.sqlite.org/download.html
107+ ```
108+ </Accordion >
109+ </AccordionGroup >
96110
97111## Installation
98112
You can’t perform that action at this time.
0 commit comments