From 681aed671ec13c6eeb3d5279848993403ee879c4 Mon Sep 17 00:00:00 2001 From: LJ Date: Tue, 10 Jun 2025 12:35:04 -0700 Subject: [PATCH] doc: double quote `"psycopg[binary,pool]"` in doc for zsh etc. --- docs/docs/getting_started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/getting_started/quickstart.md b/docs/docs/getting_started/quickstart.md index 755fc30a4..322cf5600 100644 --- a/docs/docs/getting_started/quickstart.md +++ b/docs/docs/getting_started/quickstart.md @@ -158,7 +158,7 @@ In this example, we'll use the [`psycopg` library](https://www.psycopg.org/) alo Please make sure the required packages are installed: ```bash -pip install numpy psycopg[binary,pool] pgvector +pip install numpy "psycopg[binary,pool]" pgvector ``` ### Step 4.1: Extract common transformations