Files
qdrant/lib/edge/python/README.md

24 lines
292 B
Markdown

# Python Bindings for Qdrant Edge
Setup environment
```bash
python -m venv .venv
source .venv/bin/activate
pip install --user maturin
```
Build and install the package
```bash
cd lib/edge/python
maturin develop --no-default-features
```
Run example
```bash
python examples/demo.py
```