# Installation

{% hint style="info" %}
If you'd like to use RDT for synthetic data, we recommend installing the [SDV library](https://sdv.dev/SDV/getting_started/install.html). It will automatically download RDT, along with other libraries to support synthetic data generation and evaluation.&#x20;
{% endhint %}

## Requirements

* The RDT has been developed and tested on Python [3.8-3.13](https://www.python.org/downloads/)
* We recommend using a virtual environment (such as [virtualenv](https://virtualenv.pypa.io/en/latest/)) to avoid conflicts with other software on your device

## Download Instructions

{% tabs %}
{% tab title="pip" %}
We recommend downloading `rdt` using [pip](https://pip.pypa.io/en/stable/).

```
pip install rdt
```

This automatically downloads the most recent version from [PyPi](https://pypi.org/project/rdt/).
{% endtab %}

{% tab title="conda" %}
You can also download `rdt` using [conda](https://docs.conda.io/en/latest/).

```
conda install -c conda-forge rdt
```

This automatically downloads the most recent version from [conda](https://anaconda.org/conda-forge/rdt).
{% endtab %}
{% endtabs %}

### Verification

To verify that you have installed the RDT correctly, check your version using the following code:

```python
import rdt
print(rdt.__version__)
```

The printed version number should be the latest one found in our [Release Notes](https://github.com/sdv-dev/RDT/releases).

## Troubleshooting

If you are having issues installing RDT, please [join our forum](https://forum.datacebo.com/). We'd be happy to help!


---

# 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://docs.sdv.dev/rdt/getting-started/installation.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.
