mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-01 15:40:53 -05:00
24 lines
299 B
Markdown
24 lines
299 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/qdrant-edge.py
|
|
```
|