From 9c89d7b22bca81df364d0e94222bd666ef6f8a04 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Wed, 18 Mar 2026 06:52:27 -0700 Subject: [PATCH] Update README.md --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5326c8b349..9c5bf033df 100644 --- a/README.md +++ b/README.md @@ -50,12 +50,30 @@ Unsloth Studio works on **Windows, Linux, WSL** and **macOS**. * **Coming soon:** Training support for Apple MLX, AMD, and Intel. * **Multi-GPU:** Available now, with a major upgrade on the way -#### Windows, MacOS, Linux or WSL: +#### MacOS, Linux or WSL Setup (One time): ``` pip install --upgrade pip ; pip install uv +uv venv unsloth_studio +source unsloth_studio/bin/activate uv pip install unsloth --torch-backend=auto unsloth studio setup -unsloth studio -H 0.0.0.0 -p 8888 +``` +Then to launch everytime: +``` +source unsloth_studio/bin/activate ; unsloth studio -H 0.0.0.0 -p 8888 +``` + +#### Windows Setup (One time): +``` +pip install --upgrade pip ; pip install uv +uv venv unsloth_studio +.\unsloth_studio\Scripts\activate +uv pip install unsloth --torch-backend=auto +unsloth studio setup +``` +Then to launch everytime: +``` +.\unsloth_studio\Scripts\activate ; unsloth studio -H 0.0.0.0 -p 8888 ``` Use our [Docker image](https://hub.docker.com/r/unsloth/unsloth) ```unsloth/unsloth``` container. Read our [Docker Guide](https://unsloth.ai/docs/get-started/install/docker). @@ -64,6 +82,8 @@ You can also install directly from source: pip install --upgrade pip ; pip install uv git clone --filter=blob:none https://github.com/unslothai/unsloth.git cd unsloth +uv venv unsloth_studio +source unsloth_studio/bin/activate uv pip install -e . --torch-backend=auto unsloth studio setup unsloth studio -H 0.0.0.0 -p 8888