From d8e6baca4f4edec0d105bf5cb6a8904e0add4325 Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Thu, 11 Jan 2024 20:20:38 +0100 Subject: [PATCH] clarify optional install in readme. Fixes https://github.com/vemonet/rdflib-endpoint/issues/20 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 681e4d7..b1a05c9 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,13 @@ pip install "rdflib-endpoint[web]" If you want to use `rdlib-endpoint` as a CLI you can install with the optional dependency `cli`: ```bash -pip install "rdflib-endpoint[cli]" +pip install "rdflib-endpoint[web,cli]" ``` If you want to use [oxigraph](https://github.com/oxigraph/oxigraph) as backend triplestore you can install with the optional dependency `oxigraph`: ```bash -pip install "rdflib-endpoint[oxigraph,cli]" +pip install "rdflib-endpoint[web,cli,oxigraph]" ``` > [!WARNING]