For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation

If you'd like to use RDT for synthetic data, we recommend installing the SDV library. It will automatically download RDT, along with other libraries to support synthetic data generation and evaluation.

Requirements

  • The RDT has been developed and tested on Python 3.8-3.13

  • We recommend using a virtual environment (such as virtualenv) to avoid conflicts with other software on your device

Download Instructions

We recommend downloading rdt using pip.

pip install rdt

This automatically downloads the most recent version from PyPi.

You can also download rdt using conda.

conda install -c conda-forge rdt

This automatically downloads the most recent version from conda.

Verification

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

import rdt
print(rdt.__version__)

The printed version number should be the latest one found in our Release Notes.

Troubleshooting

If you are having issues installing RDT, please join our forum. We'd be happy to help!

Last updated