# Installing Manot and Initial Setup

### <mark style="background-color:purple;">Download and install the Manot package</mark>

```
!pip install -U  manot
```

### <mark style="background-color:purple;">Initializing Token and Authorizing the Manot Client</mark>

Upon signing up for Manot, you will receive a token for authorizing the Manot client. If you haven't received your token yet, please email us at <engineering@manot.ai>.

Once you have your token, you can authorize the Manot client by providing your token and pointing to the service URL.&#x20;

```
from manot import manotAI

manot = manotAI("manot_service_url", "token")
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://manot.gitbook.io/manot/product-guide/installing-manot-and-initial-setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
