From 17ba96cbb84607935126d016ed92b81b26fb64dd Mon Sep 17 00:00:00 2001 From: nyxst4ck <289980115+nyxst4ck@users.noreply.github.com> Date: Wed, 3 Jun 2026 07:30:14 -0300 Subject: [PATCH] docs: quote pip extras install examples --- packages/agent-framework-python/README.md | 2 +- packages/openai-sdk-python/README.md | 4 ++-- skills/supermemory/references/quickstart.md | 2 +- skills/supermemory/references/sdk-guide.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/agent-framework-python/README.md b/packages/agent-framework-python/README.md index afe1f2c91..57b5d25ba 100644 --- a/packages/agent-framework-python/README.md +++ b/packages/agent-framework-python/README.md @@ -25,7 +25,7 @@ For async HTTP support (recommended): ```bash uv add supermemory-agent-framework[async] # or -pip install supermemory-agent-framework[async] +pip install 'supermemory-agent-framework[async]' ``` ## Quick Start diff --git a/packages/openai-sdk-python/README.md b/packages/openai-sdk-python/README.md index be121f9a6..7e5b68aa5 100644 --- a/packages/openai-sdk-python/README.md +++ b/packages/openai-sdk-python/README.md @@ -23,7 +23,7 @@ For async HTTP support (recommended): ```bash uv add supermemory-openai-sdk[async] # or -pip install supermemory-openai-sdk[async] +pip install 'supermemory-openai-sdk[async]' ``` ## Quick Start @@ -416,7 +416,7 @@ Optional for testing: Install with async support: ```bash -pip install supermemory-openai-sdk[async] +pip install 'supermemory-openai-sdk[async]' ``` ## Development diff --git a/skills/supermemory/references/quickstart.md b/skills/supermemory/references/quickstart.md index ca6735691..512ff1441 100644 --- a/skills/supermemory/references/quickstart.md +++ b/skills/supermemory/references/quickstart.md @@ -24,7 +24,7 @@ npm install supermemory ```bash pip install supermemory # Or for async support with aiohttp -pip install supermemory[aiohttp] +pip install 'supermemory[aiohttp]' ``` 📦 View on PyPI: [https://pypi.org/project/supermemory/](https://pypi.org/project/supermemory/) diff --git a/skills/supermemory/references/sdk-guide.md b/skills/supermemory/references/sdk-guide.md index eaa4b2d0a..c7c435b7d 100644 --- a/skills/supermemory/references/sdk-guide.md +++ b/skills/supermemory/references/sdk-guide.md @@ -21,7 +21,7 @@ pnpm add supermemory ```bash pip install supermemory # Or for async support with aiohttp -pip install supermemory[aiohttp] +pip install 'supermemory[aiohttp]' ``` 📦 View on PyPI: [https://pypi.org/project/supermemory/](https://pypi.org/project/supermemory/)