mirror of
https://github.com/unslothai/unsloth
synced 2026-04-21 13:37:39 +00:00
Update README.md
This commit is contained in:
parent
7517e0fb2f
commit
9c89d7b22b
1 changed files with 22 additions and 2 deletions
24
README.md
24
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue