# Installation

SDMetrics is an open source Python library available under the [MIT License](https://github.com/sdv-dev/SDMetrics/blob/master/LICENSE).&#x20;

## Requirements

* SDMetrics 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" %}
Download `sdmetrics` using [pip](https://pip.pypa.io/en/stable/).

```
pip install sdmetrics
```

This automatically downloads from [PyPi](https://pypi.org/project/sdmetrics/).
{% endtab %}

{% tab title="conda" %}
Download `sdmetrics` using [conda](https://docs.conda.io/en/latest/).

```
conda install -c pytorch -c conda-forge sdmetrics
```

This automatically downloads from [anaconda](https://anaconda.org/conda-forge/sdmetrics).
{% endtab %}
{% endtabs %}

## Troubleshooting

{% hint style="warning" %}
**These docs only apply to the latest version.** If you're experiencing issues importing and using sdmetrics, check your version using:

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

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

For other problems, please [visit our forum](https://forum.datacebo.com/).


---

# 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/sdmetrics/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.
