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

# Install Your Python Client

## Drivers

<Tabs>
  <Tab title="Python">
    1. [Download the Python driver](/drivers-and-clients/download-drivers-and-clients).
    2. Install the driver:

       ```bash theme={null}
       $ pip install pyregatta-<version>_<type>.tar.gz
       ```

       ### Notes

       * **Python 3.6** or newer is required to use the Regatta Python driver.
       * If you are using the **Full** driver package, the Regatta client library is included automatically. If you are using the **Standalone** version, ensure that the [client library is installed](/drivers-and-clients/client-lib).
       * The Regatta Python driver follows the PEP 249 / DB-API 2.0 specification. Refer to the [official Python DB-API specification documentation](https://peps.python.org/pep-0249/) for full API details.
  </Tab>
</Tabs>

***

## ORM frameworks

<Tabs>
  <Tab title="SQLAlchemy">
    1. [Download the Regatta SQLAlchemy dialect](/drivers-and-clients/download-drivers-and-clients).
    2. Install the package:

       ```bash theme={null}
       $ pip install sqlalchemy-regatta-<version>.tar.gz
       ```

           <Note>
             Regatta supports SQLAlchemy version 2.0.34 and above. Refer to the [official SQLAlchemy documentation](https://docs.sqlalchemy.org/en/20/intro.html#installation-guide) for installation instructions and API details.
           </Note>
  </Tab>

  <Tab title="Django">
    1. [Download the Regatta Django package](/drivers-and-clients/download-drivers-and-clients).
    2. Install the package:

       ```bash theme={null}
       $ pip install django-regatta-<version>.tar.gz
       ```

           <Note>
             Regatta supports Django version 4.2 and above. Refer to the [official Django documentation](https://docs.djangoproject.com/en/4.2/) for installation instructions and API details.
           </Note>
  </Tab>
</Tabs>
