# Custom environments

> Custom environments - Describes how to build a custom environment when a custom task requires
> something not contained in one of DataRobot's built-in environments.

This Markdown file sits beside the HTML page at the same path (with a `.md` suffix). It summarizes the topic and lists links for tools and LLM context.

Companion generated at `2026-04-24T16:03:56.601967+00:00` (UTC).

## Primary page

- [Custom environments](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html): Full documentation for this topic (HTML).

## Sections on this page

- [Prerequisites](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#prerequisites): In-page section heading.
- [Create the environment](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#create-the-environment): In-page section heading.
- [Add Linux packages](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#add-linux-packages): In-page section heading.
- [Add Python/R packages](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#add-python-r-packages): In-page section heading.
- [Test the environment locally](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#test-the-environment-locally): In-page section heading.
- [Use the new environment](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#use-the-new-environment): In-page section heading.
- [Upload to DataRobot](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#upload-to-datarobot): In-page section heading.
- [Add to task](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#add-to-task): In-page section heading.
- [Work with environments](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#work-with-environments): In-page section heading.
- [View environment information](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#view-environment-information): In-page section heading.
- [Share and download](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#share-and-download): In-page section heading.

## Related documentation

- [Classic UI documentation](https://docs.datarobot.com/en/docs/classic-ui/index.html): Linked from this page.
- [Modeling](https://docs.datarobot.com/en/docs/classic-ui/modeling/index.html): Linked from this page.
- [Specialized workflows](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/index.html): Linked from this page.
- [Composable ML](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/index.html): Linked from this page.
- [custom tasks](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-tasks.html): Linked from this page.
- [DRUM installation documentation](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-drum.html): Linked from this page.
- [version](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/custom-models/custom-model-environments/custom-environments.html#add-an-environment-version): Linked from this page.
- [share and/or delete](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/custom-models/custom-model-workshop/custom-model-actions.html): Linked from this page.

## Documentation content

# Custom environments

Once uploaded into DataRobot, [custom tasks](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-tasks.html) run inside of environments—Docker containers running in Kubernetes. In other words, DataRobot copies the uploaded files defining the custom task into the image container.

In most cases, adding a custom environment is not required because there are a variety of built-in environments available in DataRobot. Python and/or R packages can be easily added to these environments by uploading a `requirements.txt` file with the task’s code. A custom environment is only required when a custom task:

- Requires additional Linux packages.
- Requires a different operating system.
- Uses a language other than Python, R, or Java.

This document describes how to build a custom environment for these cases.

## Prerequisites

To test a custom environment locally, install both Docker Desktop and the DataRobot User Models (DRUM) CLI tool on your machine, as described in the [DRUM installation documentation](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-drum.html).

## Create the environment

Once DRUM is installed, begin your environment creation by copying one of the examples from [GitHub](https://github.com/datarobot/datarobot-user-models/tree/master/public_dropin_environments). Log in to GitHub before clicking this link. Make sure:

1. The environment code stays in a single folder.
2. You remove the env_info.json file.

### Add Linux packages

To add Linux packages to an environment, add code in the beginning of `dockerfile`, immediately after the `FROM datarobot…` line.

Use `dockerfile` syntax for an Ubuntu base. For example, the following command tells DataRobot which base to use and then to install packages `foo`, `boo`, and `moo` inside the Docker image:

```
FROM datarobot/python3-dropin-env-base
RUN apt-get update --fix-missing && apt-get install foo boo moo
```

### Add Python/R packages

In some cases, you might want to include Python/R packages in the environment. To do so, note the following:

- List packages to install inrequirements.txt. For R packages, do not include versions in the list.
- Do not mix Python and R packages in the samerequirements.txtfile. Instead, create multiple files and adjustdockerfileso DataRobot can find and use them.

See an explanation and examples of `requirements.txt` files in the [custom tasks](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-tasks.html) documentation.

## Test the environment locally

The following example illustrates how to quickly test your environment using Docker tools and DRUM.

1. To test a custom task together with a custom environment, navigate to the local folder where the task content is stored.
2. Run the following, replacing placeholder names in< >brackets with actual names: drum fit --code-dir <path_to_task_content> --docker <path_to_a_folder_with_environment_code> --input <path_to_test_data.csv> --target-type <target_type> --target <target_column_name> --verbose

## Use the new environment

To use the tested environment, upload it to DataRobot and apply it to a task. You can also share and download the environment you created.

### Upload to DataRobot

Upload a custom environment into DataRobot from Model Registry > Custom Model Workshop > Environments > Add new environment. When you upload an environment, it is only available to you unless you [share](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-env.html#share-and-download) it with other individuals.

To make changes to an existing environment, create a new [version](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/custom-models/custom-model-environments/custom-environments.html#add-an-environment-version).

### Add to task

To use the new environment with a custom task:

1. Navigate toModel Registry > Custom Model Workshop > Tasksand click to select an existing task.
2. Select the new environment from theBase Environmentdropdown.

## Work with environments

You can view a variety of information related to each custom and built-in environment, as well as download the content. With custom environments you can also share and delete the content.

> [!WARNING] Warning
> If you delete an environment, you are removing the environment for everyone that it may have been shared with.

### View environment information

There is a variety of information available for each custom and built-in environment. To view:

1. Navigate toModel Registry > Custom Model Workshop > Environments. The resulting list shows all environments available to your account, with summary information.
2. For more information on an individual environment, click to select: The versions tab lists a variety of version-specific information and provides a link for downloading that version's environment context file.
3. ClickCurrent Deploymentsto see a list of all deployments in which the current environment has been used.
4. ClickEnvironment Infoto view information about the general environment, not including version information.

### Share and download

You can share custom environments with anyone in your organization from the menu options on the right. These options are not available to built-in environments because all organization members have access and these environment options should not be removed.

> [!NOTE] Note
> An environment is not available in the model registry to other users unless it was explicitly shared. That does not, however, limit users' ability to use blueprints that include tasks that use that environment. See the description of [implicit sharing](https://docs.datarobot.com/en/docs/classic-ui/modeling/special-workflows/cml/cml-custom-tasks.html#implicit-sharing) for more information.

From Model Registry > Custom Model Workshop > Environments, use the menu to [share and/or delete](https://docs.datarobot.com/en/docs/classic-ui/mlops/deployment/custom-models/custom-model-workshop/custom-model-actions.html) any custom environment that you have appropriate permissions for. (Note that the link points to custom model actions, but the options are the same for custom tasks and environments.)
