# Install Zipy

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

<figure><img src="https://3440602746-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FcCYilc27NCELgnKQNPVF%2Fuploads%2F6QPVOZaK5qLFMfeffqjt%2FInstallScreen.png?alt=media&#x26;token=524609fb-7bc4-4b36-972b-f73ed2d21152" 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.
