> 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/updating.md).

# Mise à jour d’Unsloth

### Mettre à jour Unsloth Desktop

Unsloth Desktop recherche automatiquement les mises à jour après le démarrage. Pour vérifier manuellement, ouvrez **Paramètres** → **Général** et sélectionnez **Vérifier les mises à jour**.

* **macOS et Windows :** Sélectionnez **Mettre à jour maintenant**. Unsloth installe la mise à jour et relance l'application.
* **Linux AppImage :** Les mises à jour dans l'application sont prises en charge pour la version AppImage.
* **Linux `.deb`:** Téléchargez le dernier paquet depuis la [page de téléchargement Linux](https://unsloth.ai/download/linux) et installez-le par-dessus la version existante. Les paquets Debian se mettent à jour manuellement.

Unsloth Desktop se met à jour indépendamment des installations manuelles d'Unsloth Studio et d'Unsloth Core.

### Mettre à jour Unsloth Studio

Vous pouvez utiliser les mêmes commandes d'installation pour mettre à jour

#### **MacOS, Linux, WSL :**

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

#### **Windows PowerShell :**

```bash
irm https://unsloth.ai/install.ps1 | iex
```

### Mise à jour d'Unsloth Core :

```bash
pip install --upgrade unsloth unsloth_zoo
```

#### Mise à jour d'Unsloth Core sans mise à jour des dépendances :

<pre class="language-bash" data-overflow="wrap"><code class="lang-bash">pip install --upgrade --force-reinstall --no-cache-dir --no-deps unsloth
<strong>pip install --upgrade --force-reinstall --no-cache-dir --no-deps unsloth_zoo
</strong></code></pre>

#### Pour utiliser une ancienne version d'Unsloth :

{% code overflow="wrap" %}

```bash
pip install --force-reinstall --no-cache-dir --no-deps unsloth==2025.1.5
```

{% endcode %}

'2025.1.5' est l'une des anciennes versions précédentes d'Unsloth. Remplacez-la par une version précise répertoriée sur notre [GitHub ici](https://github.com/unslothai/unsloth/releases).


---

# 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/updating.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.
