diff --git a/apps/develop.mdx b/apps/develop.mdx index 5a2f5dd..c34e776 100644 --- a/apps/develop.mdx +++ b/apps/develop.mdx @@ -19,7 +19,19 @@ An `Invocation` is a single execution of an action. Invocations can be triggered ## Getting started: create an app -First, install the Kernel SDK and create an app. +First, install the Kernel SDK for your language: + + +```bash Typescript/Javascript +npm install @onkernel/sdk +``` + +```bash Python +pip install kernel +``` + + +Then create an app: ```typescript Typescript/Javascript diff --git a/browsers/create-a-browser.mdx b/browsers/create-a-browser.mdx index 832e735..3ca7ae7 100644 --- a/browsers/create-a-browser.mdx +++ b/browsers/create-a-browser.mdx @@ -9,6 +9,12 @@ Kernel browsers were designed to be lightweight, fast, and efficient for cloud-b ## 1. Create a Kernel browser + +First, install the Kernel SDK: +- Typescript/Javascript: `npm install @onkernel/sdk` +- Python: `pip install kernel` + + Use our SDK to create a browser: diff --git a/introduction.mdx b/introduction.mdx index 76ec542..e90446c 100644 --- a/introduction.mdx +++ b/introduction.mdx @@ -7,6 +7,12 @@ Kernel is a developer platform that provides Crazy Fast Browser Infrastructure f ## kernel.browsers.create() + +To use the Kernel SDK, install it first: +- Typescript/Javascript: `npm install @onkernel/sdk` +- Python: `pip install kernel` + + If you are already familiar with browser vendors, you can immediately start using our browsers with `kernel.browsers.create()`. We return a CDP url that you can connect any Playwright or Puppeteer automation to.