Skip to content

Commit f6d2825

Browse files
author
Daniele Briggi
committed
chore(readme): command name
1 parent 9bedd88 commit f6d2825

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ A hybrid search engine built on SQLite with [SQLite AI](https://github.com/sqlit
2121
## Installation
2222

2323
```bash
24-
python -m venv .venv # On macOS: python3 -m venv .venv
25-
source .venv/bin/activate # On Windows: .venv\Scripts\activate
24+
python3 -m venv .venv
25+
source .venv/bin/activate # On Windows: .venv\Scripts\activate
2626
pip install sqlite-rag
2727
```
2828

@@ -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 # On macOS: python3 -m venv .venv
118-
source .venv/bin/activate # On Windows: .venv\Scripts\activate
117+
python3 -m venv .venv
118+
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)