From 9c93439a01c337e1dd36a398cca62081c9b0386d Mon Sep 17 00:00:00 2001 From: Tianyu Chen <84518711+nhzq-1010@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:36:01 +0800 Subject: [PATCH] docs: add Linux quick setup method for JaguarDB (#32520) Description: Added "Method Two: Quick Setup (Linux)" section to prerequisites, providing a curl-based installation method for deploying JaguarDB without Docker. Retained original Docker setup instructions for flexibility. --- docs/docs/integrations/vectorstores/jaguar.ipynb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/docs/integrations/vectorstores/jaguar.ipynb b/docs/docs/integrations/vectorstores/jaguar.ipynb index 1e554855a03..de0abb91098 100644 --- a/docs/docs/integrations/vectorstores/jaguar.ipynb +++ b/docs/docs/integrations/vectorstores/jaguar.ipynb @@ -28,10 +28,25 @@ "1. You must install and set up the JaguarDB server and its HTTP gateway server.\n", " Please refer to the instructions in:\n", " [www.jaguardb.com](http://www.jaguardb.com)\n", + "\n", + " **Method One: Docker**\n", + "\n", " For quick setup in docker environment:\n", " docker pull jaguardb/jaguardb\n", " docker run -d -p 8888:8888 -p 8080:8080 --name jaguardb jaguardb/jaguardb\n", "\n", + " **Method Two: Quick Setup(Linux)**\n", + "\n", + " Without Docker, run:\n", + " ```\n", + " curl -fsSL http://jaguardb.com/install.sh | sh\n", + " ```\n", + " This installs both the Jaguar vector database and HTTP gateway.\n", + " The servers will start automatically after installation.\n", + "\n", + "\n", + "\n", + "\n", "2. You must install the http client package for JaguarDB:\n", " ```\n", " pip install -U jaguardb-http-client\n",