> For the complete documentation index, see [llms.txt](https://docs.zipy.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zipy.ai/getting-started/install-zipy.md).

# Install Zipy

Getting started is easy. Go to the Install page in the Zipy application after Signing In.&#x20;

<figure><img src="/files/tJzvuzSjGtnwczXrq3ym" alt=""><figcaption></figcaption></figure>

You can use either of the following methods:

1. **Install Zipy via SDK script**

You can achieve this by simply including a two-line JavaScript SDK provided by Zipy in the head section of the html page of your web application.&#x20;

Sample SDK script:&#x20;

<pre data-overflow="wrap"><code><strong>&#x3C;script src="https://cdn.zipy.ai/sdk/v1.0/zipy.min.umd.js" crossorigin="anonymous">&#x3C;/script>
</strong><strong>&#x3C;script> window.zipy &#x26;&#x26; window.zipy.init('YOUR_PROJECT_SDK_KEY');&#x3C;/script>
</strong></code></pre>

**Note:** If you are using **lazy loading** for external scripts on your website, please ensure that the Zipy script is downloaded before calling the `zipy.init()` function.

\
2\.  **Install Zipy via npm**

Following are the steps for installation:

* Install zipy module in the app project:

```
npm i zipyai
```

* Then import zipy module and initialize in your \_app.js or any other source file:

```
import zipy from 'zipyai';
zipy.init('YOUR_PROJECT_SDK_KEY');  
```

Please sign into [*https://app.zipy.ai*](https://app.zipy.ai/) to get your Project SDK Key.
