> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# InitStartError: wandb 프로세스와 통신 중 오류

이 오류는 라이브러리가 데이터를 서버와 동기화하는 프로세스를 시작하는 중 문제가 발생했음을 의미합니다.

다음 우회 방법으로 특정 환경에서 이 문제를 해결할 수 있습니다:

<Tabs>
  <Tab title="Linux 및 OS X">
    ```python theme={null}
    wandb.init(settings=wandb.Settings(start_method="fork"))
    ```
  </Tab>

  <Tab title="Google Colab">
    `0.13.0` 이전 버전에서는 다음을 사용하세요.

    ```python theme={null}
    wandb.init(settings=wandb.Settings(start_method="thread"))
    ```
  </Tab>
</Tabs>

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge><Badge stroke shape="pill" color="orange" size="md">[run 비정상 종료](/ko/support/models/tags/run-crashes)</Badge>
