> ## 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`](/ko/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">[환경 변수](/ko/support/models/tags/environment-variables)</Badge>
