Skip to content

Commit 71bed6b

Browse files
Merge pull request #3 from sqliteai/marcobambini-patch-1
Update README.md
2 parents 7f18eee + f6d2825 commit 71bed6b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
samples
1+
/samples
22
extensions
33

44
# LLM models

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A hybrid search engine built on SQLite with [SQLite AI](https://github.com/sqlit
2121
## Installation
2222

2323
```bash
24-
python -m venv .venv
24+
python3 -m venv .venv
2525
source .venv/bin/activate # On Windows: .venv\Scripts\activate
2626
pip install sqlite-rag
2727
```
@@ -114,11 +114,11 @@ git clone https://github.com/sqliteai/sqlite-rag.git
114114
cd sqlite-rag
115115

116116
# Create virtual environment
117-
python -m venv .venv
117+
python3 -m venv .venv
118118
source .venv/bin/activate # On Windows: .venv\Scripts\activate
119119

120120
# Install in development mode
121-
pip install -e .[dev]
121+
pip install -e '.[dev]'
122122
```
123123
## How It Works
124124

0 commit comments

Comments
 (0)