> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Comment puis-je empêcher wandb d’afficher du texte dans mon terminal ou dans la sortie de mon notebook Jupyter ?

Définissez la variable d'environnement [`WANDB_SILENT`](/fr/models/track/environment-variables) sur `true`.

<Tabs>
  <Tab title="Python">
    ```python theme={null}
    os.environ["WANDB_SILENT"] = "true"
    ```
  </Tab>

  <Tab title="Notebook">
    ```python theme={null}
    %env WANDB_SILENT=true
    ```
  </Tab>

  <Tab title="Ligne de commande">
    ```shell theme={null}
    WANDB_SILENT=true
    ```
  </Tab>
</Tabs>

***

<Badge stroke shape="pill" color="orange" size="md">[Variables d’environnement](/fr/support/models/tags/environment-variables)</Badge>
