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

# How do I stop wandb from writing to my terminal or my Jupyter notebook output?

Set the environment variable [`WANDB_SILENT`](/models/track/environment-variables) to `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="Command line">
    ```shell theme={null}
    WANDB_SILENT=true
    ```
  </Tab>
</Tabs>

***

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