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

# Installation

> Install and set up the Narada Python SDK

## Step-by-Step Installation

<Steps>
  <Step title="Install the Narada SDK">
    Install the Narada Python SDK using pip:

    ```bash theme={null}
    pip install narada
    ```
  </Step>

  <Step title="Open Browser with SDK">
    Create a Python script to open a browser window:

    ```python theme={null}
    import asyncio

    from narada import BrowserEnvironment

    async def main() -> None:
        env = BrowserEnvironment()

        try:
            await env.start()
            print("Browser window opened successfully!")
            print(f"Window ID: {env.browser_window_id}")
        finally:
            await env.close()

    if __name__ == "__main__":
        asyncio.run(main())
    ```

    <Note>
      Running this script opens Chrome and initializes a Narada browser environment.
    </Note>
  </Step>

  <Step title="Install Extension">
    When the initialization page opens, you'll need to install the Narada Extension:

    <Card title="Narada Chrome Extension" icon="chrome" href="https://chromewebstore.google.com/detail/enterprise-narada-ai-assi/bhioaidlggjdkheaajakomifblpjmokn?authuser=0&hl=en">
      Download from Chrome Web Store
    </Card>

    1. Click **Install Extension** on the initialization page or use the link above
    2. Install the Narada Extension from the Chrome Web Store and sign in to your Narada account
    3. Pin the extension to your Chrome toolbar

    <video autoPlay muted loop playsInline className="w-full h-full aspect-video rounded-xl" src="https://mintcdn.com/naradaai/V_hKSzoFuGmkr-Yj/videos/narada-extension.mp4?fit=max&auto=format&n=V_hKSzoFuGmkr-Yj&q=85&s=9dbeefa8bfa20ae7130d4146877b9059" data-path="videos/narada-extension.mp4" />

    <Tip>
      The video shows how to pin the extension to your toolbar after installation and sign in to your Narada account.
    </Tip>
  </Step>

  <Step title="Test the Extension">
    Type a message like "Hello" in the Narada sidepane.

    <Check>
      If you get a response, the extension is working correctly!
    </Check>
  </Step>
</Steps>
