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

This error indicates that the library encounters an issue launching the process that synchronizes data to the server.

The following workarounds resolve the issue in specific environments:

<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 prior to `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>
