> ## Documentation Index
> Fetch the complete documentation index at: https://docs.haiqu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update the SDK

> Get the latest Haiqu SDK with the most powerful features

This guide is for users who installed Haiqu SDK locally using the [Local Installation](/quickstart/qs_local) guide.

<Steps>
  <Step title="Activate Conda environment">
    Activate your Conda environment as follows:

    ```bash theme={null}
    conda activate haiqu-env
    ```
  </Step>

  <Step title="Update SDK">
    ```bash theme={null}
    pip install --upgrade haiqu-sdk
    ```

    Pip will handle all dependencies automatically and you will always install the latest (and well-tested) version.
  </Step>

  <Step title="Verify the installation">
    Pip output should include the final message:

    ```bash theme={null}
    Successfully installed haiqu-sdk-x.y.z
    ```
  </Step>
</Steps>
