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

# InitStartError: wandb プロセスとの通信エラー

このエラーは、W\&B ライブラリがサーバーにデータを同期するプロセスを起動できないことを示します。

問題を解決するには、ご利用の環境に対応する回避策を適用してください。

<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](/ja/support/models/tags/experiments)</Badge><Badge stroke shape="pill" color="orange" size="md">[runのクラッシュ](/ja/support/models/tags/run-crashes)</Badge>
