# Mise à jour d'Unsloth

### **Mettre à jour Unsloth Studio**

Utilisez les mêmes commandes d’installation pour effectuer la mise à jour.

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

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

#### **Windows PowerShell :**

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

#### Sinon, vous pouvez aussi utiliser notre commande de mise à jour :

{% code overflow="wrap" %}

```bash
unsloth studio update 
```

{% endcode %}

### Mise à jour du cœur Unsloth :

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

#### Mise à jour du cœur Unsloth 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 spécifique répertoriée sur notre [GitHub ici](https://github.com/unslothai/unsloth/releases).


---

# Agent Instructions: 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:

```
GET https://unsloth.ai/docs/fr/commencer/install/updating.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
