From 0a3cd1879935b72bfdb1ef8eefaa47fad82e97e8 Mon Sep 17 00:00:00 2001 From: Daniel Gustaw Date: Thu, 5 Feb 2026 09:24:33 +0100 Subject: [PATCH] added PyJWT in installation instruction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit without this we have ``` import jwt │ │ 11 from fastapi import Request, Response │ │ 12 from fastapi.responses import JSONResponse │ │ 13 from jwt import PyJWK │ │ │ │ ╭────────────────────────────────────────── locals ──────────────────────────────────────────╮ │ │ │ Dict = typing.Dict │ │ │ │ fnmatch = │ │ │ │ Iterable = typing.Iterable │ │ │ │ json = │ │ │ │ List = typing.List │ │ │ │ Optional = typing.Optional │ │ │ │ re = │ │ │ │ Union = typing.Union │ │ │ ╰────────────────────────────────────────────────────────────────────────────────────────────╯ │ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────╯ ModuleNotFoundError: No module named 'jwt' ``` and ImportError: cannot import name 'PyJWK' from 'jwt' https://stackoverflow.com/questions/63309591/import-jwt-importerror-no-module-named-jwt --- agent-os/run-your-os.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-os/run-your-os.mdx b/agent-os/run-your-os.mdx index 59a981ce1..020cc3a7b 100644 --- a/agent-os/run-your-os.mdx +++ b/agent-os/run-your-os.mdx @@ -49,7 +49,7 @@ uv venv --python 3.12 ```bash -uv pip install -U agno anthropic 'fastapi[standard]' sqlalchemy +uv pip install -U agno anthropic 'fastapi[standard]' sqlalchemy PyJWT ```