Comment fine-tuner des LLM sur Windows avec Unsloth (guide étape par étape)
Découvrez comment installer Unsloth sur Windows pour commencer à fine-tuner des LLM en local.
Unsloth Studio
irm https://unsloth.ai/install.ps1 | iexunsloth studio -H 0.0.0.0 -p 8888Méthode n°1 - Windows via Conda :
1


Invoke-WebRequest -Uri "https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe" -OutFile ".\miniconda.exe"
Start-Process -FilePath ".\miniconda.exe" -ArgumentList "/S" -Wait
del .\miniconda.exe



2
conda create --name unsloth_env python==3.12 -y
conda activate unsloth_env
3

4
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu130
import torch
print(torch.cuda.is_available())
A = torch.ones((10, 10), device = "cuda")
B = torch.ones((10, 10), device = "cuda")
A @ B
5
pip install unsloth6
🦥 Unsloth : Va modifier votre ordinateur pour permettre un affinement gratuit 2x plus rapide.
🦥 Unsloth Zoo va maintenant tout modifier pour accélérer l’entraînement !
==((====))== Unsloth 2026.1.4 : patching rapide de Gemma3. Transformers : 4.57.6.
\\ /| NVIDIA GeForce RTX 3060. Nombre de GPU = 1. Mémoire maximale : 12.0 Go. Plateforme : Windows.
O^O/ \_/ \ Torch : 2.10.0+cu130. CUDA : 8.6. Kit d’outils CUDA : 13.0. Triton : 3.6.0
\ / Bfloat16 = TRUE. FA [Xformers = 0.0.34. FA2 = False]
"-____-" Licence gratuite : http://github.com/unslothai/unsloth
Unsloth : le téléchargement rapide est activé - ignorez les barres de téléchargement rouges !
Unsloth : Gemma3 ne prend pas en charge SDPA - basculement vers fast eager.
Unsloth : rendre `model.base_model.model.model` dépendant des gradients
Unsloth : tokenisation de ["text"] (num_proc=1): 0%| | 0/210289 [00:00<?, ? examples/s]� Unsloth : Va modifier votre ordinateur pour permettre un affinement gratuit 2x plus rapide.
🦥 Unsloth : Va modifier votre ordinateur pour permettre un affinement gratuit 2x plus rapide.
Méthode n°2 - Docker :
1
export NVIDIA_CONTAINER_TOOLKIT_VERSION=1.17.8-1
sudo apt-get update && sudo apt-get install -y \
nvidia-container-toolkit=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
nvidia-container-toolkit-base=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container-tools=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container1=${NVIDIA_CONTAINER_TOOLKIT_VERSION}2
docker run -d -e JUPYTER_PASSWORD="mypassword" \
-p 8888:8888 -p 2222:22 \
-v $(pwd)/work:/workspace/work \
--gpus all \
unsloth/unsloth3
4
5
Méthode n°3 - WSL :
1
2
3
4
5
6
Dépannage / Avancé
Mis à jour
Ce contenu vous a-t-il été utile ?


