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

# SDK Environment Setup

> How to install and configure the Syllable SDK in your local developer environment.

# Available SDKs

* [Python SDK (PyPI)](https://pypi.org/project/syllable-sdk/)
* [TypeScript SDK (npm)](https://www.npmjs.com/package/syllable-sdk)

<Tabs>
  <Tab title="TypeScript">
    ## SDK Installation

    The SDK can be installed using various package managers:

    **NPM**

    ```bash theme={null}
    npm add syllable-sdk
    ```

    **PNPM**

    ```bash theme={null}
    pnpm add syllable-sdk
    ```

    **Bun**

    ```bash theme={null}
    bun add syllable-sdk
    ```

    **Yarn**

    ```bash theme={null}
    yarn add syllable-sdk zod

    # Note: Yarn does not install peer dependencies automatically. You will need
    # to install zod as shown above.
    ```
  </Tab>

  <Tab title="Python">
    ## SDK Installation

    The SDK can be installed using [pip](https://pip.pypa.io/en/stable/):

    ```bash theme={null}
    pip install syllable-sdk
    ```
  </Tab>
</Tabs>
