> For the complete documentation index, see [llms.txt](https://unsloth.ai/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://unsloth.ai/docs/fr/commencer/install/linux.md).

# Installer Unsloth sur Linux

Pour installer Unsloth Desktop sur Linux, suivez les étapes ci-dessous.

{% stepper %}
{% step %}

### Télécharger

### <a href="https://unsloth.ai/download/linux" class="button primary">Télécharger Unsloth pour Linux</a>

{% endstep %}

{% step %}

### Installer

1. Ouvrez l’installateur Unsloth (`.deb` fichier)
2. Sélectionnez Installer
3. Lancez l’application et attendez la fin de l’installation
   {% endstep %}

{% step %}

### Choisissez un modèle

Ouvrez Sélectionner un modèle ou Modèle hub, choisissez un modèle et une quantification, puis téléchargez-le. Une fois terminé, commencez à discuter - aucune configuration requise.

<figure><img src="/files/7d958cdf531f0258b53aad7d5d1606f0c0104da3" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}

### Unsloth est maintenant prêt

Pour commencer à discuter, tapez un message et appuyez sur Entrée.

* **Connecter des outils :** [Claude Code](/docs/fr/bases/claude-code.md), [Codex](/docs/fr/bases/codex.md), recherche web, [MCP](/docs/fr/bases/mcp.md) et plus encore
* **Entraîner des modèles :** Affinez du texte, de la diffusion, des embeddings, et plus encore
* **Générer des médias :** Créez et entraînez des images, des vidéos, du TTS localement

<figure><img src="/files/72464cc7d14358590f32529a470d358e2652fd88" alt=""><figcaption></figcaption></figure>
{% endstep %}
{% endstepper %}

### Installation avancée

Utilisez ces options pour les versions de développement, Unsloth Studio nightly, ou Unsloth Core basé sur du code.

#### Installer Unsloth Studio depuis le dépôt principal

```bash
git clone https://github.com/unslothai/unsloth
cd unsloth
./install.sh --local
unsloth studio -H 0.0.0.0 -p 8888
```

#### Installer Unsloth Studio nightly

```bash
git clone https://github.com/unslothai/unsloth
cd unsloth
git checkout nightly
./install.sh --local
unsloth studio -H 0.0.0.0 -p 8888
```

#### Installer Unsloth Core avec uv

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv unsloth_env --python 3.13
source unsloth_env/bin/activate
uv pip install unsloth --torch-backend=auto
```

Ou installez directement la dernière version pip :

```bash
pip install unsloth
```

Pour installer vLLM avec Unsloth :

```bash
uv pip install unsloth vllm --torch-backend=auto
```

Pour les environnements virtuels, les commandes spécifiques à CUDA et Torch, et les options pip avancées :

[**Consulter le guide d'installation avancée de pip**](https://unsloth.ai/docs/get-started/install/pip-install)

### Installer Unsloth Studio manuellement

La commande ci-dessous installe **Unsloth Studio**, l’interface web basée sur le navigateur. Elle n’installe pas l’application Desktop native.

```bash
curl -fsSL https://unsloth.ai/install.sh | sh
```

Utilisez la même commande pour mettre à jour Unsloth Studio.

#### Lancer Unsloth Studio

```bash
unsloth studio -H 0.0.0.0 -p 8888
```

Pour des instructions d'installation et des exigences détaillées pour Unsloth Studio, [consultez le guide Unsloth Studio](https://unsloth.ai/docs/new/studio/install).

### Désinstaller

#### Unsloth Desktop

**Ubuntu ou Debian (`.deb`)**

1. Fermez Unsloth s'il est en cours d'exécution.
2. Supprimez le paquet :

```bash
sudo apt remove unsloth
```

**AppImage**

1. Fermez Unsloth s'il est en cours d'exécution.
2. Supprimez le fichier téléchargé `.AppImage` fichier.

La désinstallation d'Unsloth Desktop ne supprime pas les modèles téléchargés ni vos fichiers.

#### Unsloth Studio (installation manuelle)

Exécutez le script de désinstallation Linux :

```bash
curl -fsSL https://raw.githubusercontent.com/unslothai/unsloth/main/scripts/uninstall.sh | sh
```

Cela supprime Unsloth Studio, sa commande CLI, les données du lanceur et les raccourcis du bureau Linux. Cela ne supprime pas les modèles Hugging Face téléchargés.

#### Supprimez les fichiers de modèles téléchargés

Le cache Hugging Face par défaut est :

```bash
~/.cache/huggingface/hub/
```

Si `HF_HUB_CACHE`, `HF_HOME`, ou `XDG_CACHE_HOME` est défini, utilisez cet emplacement à la place.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://unsloth.ai/docs/fr/commencer/install/linux.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
