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

# `resume='must' but run ([RUN-ID]) doesn't exist` 오류는 어떻게 해결하나요?

`resume='must' but run ([RUN-ID]) doesn't exist` 오류가 발생하면, 재개하려는 run이 프로젝트 또는 entity에 존재하지 않는다는 뜻입니다. 올바른 인스턴스에 로그인되어 있는지, 그리고 프로젝트와 entity가 올바르게 설정되어 있는지 확인하세요. `[ENTITY]`, `[PROJECT]`, `[RUN-ID]`를 각각 사용자의 entity, 프로젝트, run ID로 바꾸세요:

```python theme={null}
wandb.init(entity=[ENTITY], project=[PROJECT], id=[RUN-ID], resume='must')
```

인증되었는지 확인하려면 [`wandb login --relogin`](/ko/models/ref/cli/wandb-login)을 실행하세요.

***

<Badge stroke shape="pill" color="orange" size="md">[재개](/ko/support/models/tags/resuming)</Badge><Badge stroke shape="pill" color="orange" size="md">[Runs](/ko/support/models/tags/runs)</Badge>
