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

# Install packages for Model Monitoring

Model Monitoring requires specific packages be included in your Environment.

You can either use a [Domino Standard Environment](/cloud/platform-capabilities/core-concepts/compute-environments/manage-compute-environments/2-domino-standard-environments) from your current version, or add the below packages to your existing environments.

## Install the Domino Data Capture client

You must use the Domino Data Capture client for integrated model monitoring.

Install it as follows:

```python theme={null}
RUN pip install domino-data-capture
```

```r theme={null}
RUN R -e "install.packages(c('DominoDataCapture'))"
```

## Install the Domino Data API

The [Domino Data API](/cloud/reference/api) currently supports Python only.

Install it as follows:

```shell theme={null}
RUN python -m pip install "dominodatalab[data]"
```
