Skip to main content

Step-by-Step Installation

1

Install the Narada SDK

Install the Narada Python SDK using pip:
pip install narada
2

Open Browser with SDK

Create a Python script to open a browser window:
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())
Running this script opens Chrome and initializes a Narada browser environment.
3

Install Extension

When the initialization page opens, you’ll need to install the Narada Extension:

Narada Chrome Extension

Download from Chrome Web Store
  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
The video shows how to pin the extension to your toolbar after installation and sign in to your Narada account.
4

Test the Extension

Type a message like “Hello” in the Narada sidepane.
If you get a response, the extension is working correctly!