-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Open
Labels
DiscussionQuestions or discussionsQuestions or discussions
Description
Hey guys we updated install instructions for Unsloth Studio to now just use one line of code!
MacOS, Linux, WSL Setup:
curl -fsSL https://unsloth.ai/install.sh | shIf you don't have curl, use wget. Then to launch after setup:
source unsloth_studio/bin/activate
unsloth studio -H 0.0.0.0 -p 8888Windows PowerShell Setup:
irm https://unsloth.ai/install.ps1 | iexThen to launch after setup:
& .\unsloth_studio\Scripts\unsloth.exe studio -H 0.0.0.0 -p 8888MacOS, Linux, WSL developer installs:
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv unsloth_studio --python 3.13
source unsloth_studio/bin/activate
uv pip install unsloth --torch-backend=auto
unsloth studio setup
unsloth studio -H 0.0.0.0 -p 8888Windows PowerShell developer installs:
winget install -e --id Python.Python.3.13
winget install --id=astral-sh.uv -e
uv venv unsloth_studio --python 3.13
.\unsloth_studio\Scripts\activate
uv pip install unsloth --torch-backend=auto
unsloth studio setup
unsloth studio -H 0.0.0.0 -p 8888Docker
Use our Docker image unsloth/unsloth container. Run:
docker run -d -e JUPYTER_PASSWORD="mypassword" \
-p 8888:8888 -p 8000:8000 -p 2222:22 \
-v $(pwd)/work:/workspace/work \
--gpus all \
unsloth/unslothReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
DiscussionQuestions or discussionsQuestions or discussions