Merge pull request #49 from unslothai/fix/replace-jwt-with-pyjwt

add pyjwt as dependency. remove jwt. fix AttributeError: module 'jwt'…
This commit is contained in:
Roland Tannous 2026-02-13 14:00:52 +04:00 committed by GitHub
commit d201935dae

View file

@ -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 ──