> ## 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: Error communicating with wandb process

This error indicates that the W\&B library can't launch the process that synchronizes data to the server.

To resolve the issue, apply the workaround for your environment:

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

  <Tab title="Google Colab">
    For versions before `0.13.0`, use:

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

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge><Badge stroke shape="pill" color="orange" size="md">[Run Crashes](/support/models/tags/run-crashes)</Badge>
