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

# artifact는 어디에 다운로드되며, 이를 어떻게 제어하나요?

기본적으로 W\&B는 artifact를 `artifacts/` 폴더에 다운로드합니다. 위치를 변경하려면 다음 방법 중 하나를 사용하세요.

* [`wandb.Artifact().download`](/ko/models/ref/python/public-api/api)에 경로를 전달합니다:

  ```python theme={null}
  wandb.Artifact().download(root="<path_to_download>")
  ```

* `WANDB_ARTIFACT_DIR` [환경 변수](/ko/models/track/environment-variables)를 설정합니다:

  ```python theme={null}
  import os
  os.environ["WANDB_ARTIFACT_DIR"] = "<path_to_download>"
  ```

***

<Badge stroke shape="pill" color="orange" size="md">[Artifacts](/ko/support/models/tags/artifacts)</Badge><Badge stroke shape="pill" color="orange" size="md">[환경 변수](/ko/support/models/tags/environment-variables)</Badge>
