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

# wandb がターミナルや Jupyter Notebook の出力に書き込まないようにするにはどうすればよいですか？

環境変数 [`WANDB_SILENT`](/ja/models/track/environment-variables) を `true` に設定します。

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

  <Tab title="ノートブック">
    ```python theme={null}
    %env WANDB_SILENT=true
    ```
  </Tab>

  <Tab title="コマンドライン">
    ```shell theme={null}
    WANDB_SILENT=true
    ```
  </Tab>
</Tabs>

***

<Badge stroke shape="pill" color="orange" size="md">[環境変数](/ja/support/models/tags/environment-variables)</Badge>
