> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pulsejet.jetengine.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Tutorial to Get Started with PulsejetDB

Let's first install the database client. Client communicates with GRPC with Pulsejet.

## Client Interface

Below you can find the way to install the pulsejet client.

<AccordionGroup>
  <Accordion icon="python" title="Install Python package">
    Create a virtualenv or in activated virtualenv, issue this command:

    ```bash
    pip install pulsejet-client
    ```

    For people who will always use Remote Installation, we will provide also thin client.
  </Accordion>

  <Accordion icon="arrow-down-to-arc" title="Import Pulsejet">
    Import Pulsejet in your Python code like:

    ```python
    import pulsejet_client as pj
    ```

    Now you are ready to go to work with database after running the docker image, or if you are using Pulsejet Cloud or any cloud installation.

    **Run the database**
    <Tip>Head to [Docker-based](/setup/self-hosted/docker) setup.</Tip>

    <Note>
      Client comes in two flavors `sync` or `async` client.
    </Note>
  </Accordion>
</AccordionGroup>

After following the steps above you are ready to start using PulsejetDB for RAG development, or for production integration use cases.

## Choose your way to develop

There are possible options to install and use PulsejetDB. There are other possibilities like full blown installation in your own cloud or use our **Pulsejet Cloud** solution.

<CardGroup>
  <Card title="Local Pulsejet" icon="map-pin" href="/devel/client">
    Use Local Pulsejet instance without any additional installation or steps.
  </Card>

  <Card title="Remote Pulsejet" icon="box-open" href="/setup/self-hosted/docker">
    Use production grade optimized docker images for remote development.
  </Card>

  <Card title="Pulsejet Cloud" icon="cloud" href="/setup/cloud/pulsejet-cloud">
    Use ***Pulsejet Cloud*** for enterprise grade deployment.
  </Card>

  <Card title="As a Marketplace Installation" icon="shop" href="/setup/cloud/google-marketplace">
    Use Marketplace installations to bring enterprise grade deployment directly into your own cloud.
  </Card>
</CardGroup>
