chore: Update README.md

Update README.md with database optional dependencies

Chore COG-595
This commit is contained in:
Igor Ilic 2024-12-02 16:24:12 +01:00
parent 63e687978e
commit 836e3d29e1

View file

@ -32,6 +32,24 @@ pip install cognee
pip install 'cognee[postgres]'
```
### With pip with Weaviate support
```bash
pip install 'cognee[weaviate]'
```
### With pip with Qdrant support
```bash
pip install 'cognee[qdrant]'
```
### With pip with Neo4j support
```bash
pip install 'cognee[neo4j]'
```
### With poetry
```bash
@ -44,6 +62,24 @@ poetry add cognee
poetry add cognee -E postgres
```
### With poetry with Weaviate support
```bash
poetry add cognee -E weaviate
```
### With poetry with Qdrant support
```bash
poetry add cognee -E qdrant
```
### With poetry with Neo4j support
```bash
poetry add cognee -E neo4j
```
## 💻 Basic Usage