From 5e3358de32669855c569a565d6fd20061e625ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20D=C3=B6rr?= Date: Sun, 19 May 2024 20:30:43 +0200 Subject: [PATCH] Add quotes around package names --- docs/docs/quick-start/installation.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docs/quick-start/installation.mdx b/docs/docs/quick-start/installation.mdx index a3b307ef76..8e2f81ef88 100644 --- a/docs/docs/quick-start/installation.mdx +++ b/docs/docs/quick-start/installation.mdx @@ -30,37 +30,37 @@ import TabItem from '@theme/TabItem'; ```text - pip install dspy-ai[pinecone] + pip install "dspy-ai[pinecone]" ``` ```text - pip install dspy-ai[qdrant] + pip install "dspy-ai[qdrant]" ``` ```text - pip install dspy-ai[chromadb] + pip install "dspy-ai[chromadb]" ``` ```text - pip install dspy-ai[marqo] + pip install "dspy-ai[marqo]" ``` ```text - pip install dspy-ai[mongodb] + pip install "dspy-ai[mongodb]" ``` ```text - pip install dspy-ai[weaviate] + pip install "dspy-ai[weaviate]" ``` ```text - pip install dspy-ai[milvus] + pip install "dspy-ai[milvus]" ```