> ## 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에서 run 초기화 시간 초과 오류를 해결하려면 어떻게 해야 하나요?

run 초기화 시간 초과 오류는 `wandb.init()`가 할당된 시간 내에 W\&B 서비스에 연결하지 못한다는 의미입니다. 이 페이지에서는 오류를 진단하고 해결하여 run이 성공적으로 시작되도록 돕습니다.

오류를 해결하려면 다음 단계를 사용해 보세요.

* **초기화 다시 시도**: run을 다시 시작해 보세요. 일시적인 네트워크 또는 서비스 문제는 두 번째 시도에서 해결되는 경우가 많습니다.
* **네트워크 연결 확인**: 인터넷 연결이 안정적인지 확인하세요.
* **wandb 버전 업데이트**: wandb 최신 버전을 설치하세요.
* **시간 초과 설정 늘리기**: `WANDB_INIT_TIMEOUT` 환경 변수를 수정하세요.
  ```python theme={null}
  import os
  os.environ['WANDB_INIT_TIMEOUT'] = '600'
  ```
* **디버깅 활성화**: 자세한 로그를 확인할 수 있도록 `WANDB_DEBUG=true` 및 `WANDB_CORE_DEBUG=true`를 설정하세요.
* **설정 확인**: API 키와 프로젝트 설정이 올바른지 확인하세요.
* **로그 검토**: `debug.log`, `debug-internal.log`, `debug-core.log`, `output.log`에서 오류를 확인하세요.

***

<Badge stroke shape="pill" color="orange" size="md">[연결 문제](/ko/support/models/tags/connectivity)</Badge><Badge stroke shape="pill" color="orange" size="md">[run 충돌](/ko/support/models/tags/run-crashes)</Badge>
