From b86503af3f50884d849ad93a39609fe9b2785dea Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Fri, 13 Feb 2026 09:58:50 +0000 Subject: [PATCH] add pyjwt as dependency. remove jwt. fix AttributeError: module 'jwt' has no attribute 'encode' --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index e53b025460..5483be1813 100755 --- a/setup.sh +++ b/setup.sh @@ -87,7 +87,7 @@ run_quiet "pip upgrade" pip install --upgrade pip echo " Installing unsloth-zoo + unsloth..." run_quiet "pip install unsloth" pip install unsloth-zoo unsloth echo " Installing studio dependencies..." -run_quiet "pip install extras" pip install typer fastapi uvicorn pydantic matplotlib pandas nest_asyncio "datasets==4.3.0" jwt +run_quiet "pip install extras" pip install typer fastapi uvicorn pydantic matplotlib pandas nest_asyncio "datasets==4.3.0" pyjwt echo "✅ Python dependencies installed" # ── 7. Add shell alias ──