Libraries

To make third-party or custom code available to notebooks and jobs running on your clusters, you can install a library. Libraries can be written in Python, Java, Scala, and R. You can upload Python, Java, and Scala libraries and point to external packages in PyPI, Maven, and CRAN repositories.

Databricks includes many common libraries in Databricks Runtime. To see which libraries are included in Databricks Runtime, look at the System Environment subsection of the Databricks Runtime release notes for your Databricks Runtime version.

Cluster-scoped libraries

You can install libraries on clusters so that they can be used by all notebooks and jobs running on the cluster. Databricks supports Python, JAR, and R libraries. See Cluster libraries.

You can install a cluster library directly from the following sources:

  • A package repository such as PyPI, Maven, or CRAN

  • Workspace files

  • Unity Catalog volumes

  • A cloud object storage location

  • Your local machine

Not all locations are supported for all types of libraries or all compute configurations. See Recommendations for uploading libraries for configuration recommendations.

Important

Libraries can be installed from DBFS when using Databricks Runtime 14.3 LTS and below. However, any workspace user can modify library files stored in DBFS. To improve the security of libraries in a Databricks workspace, storing library files in the DBFS root is deprecated and disabled by default in Databricks Runtime 15.0 and above. See Storing libraries in DBFS root is deprecated and disabled by default.

Instead, Databricks recommends uploading libraries to workspace files or Unity Catalog volumes, or using library package repositories. If your workload does not support these patterns, you can also use libraries stored in cloud object storage.

For complete library support information, see Python library support, Java and Scala library support, and R library support.

Recommendations for uploading libraries

Databricks supports most configuration installations of Python, JAR, and R libraries, but there are some unsupported scenarios. It is recommended that you upload libraries to source locations that support installation onto compute with shared access mode, as this is the recommended mode for all workloads. See Access modes. When scheduling workflows with shared access mode run the workflow with a service principal.

Important

Only use compute with single user access mode if required functionality is not supported by shared access mode. No isolation shared access mode is a legacy configuration on Databricks that is not recommended.

The following table provides recommendations organized by Databricks Runtime version and Unity Catalog enablement.

Configuration

Recommendation

Databricks Runtime 13.3 LTS and above with Unity Catalog

Install libraries on compute with shared access mode from Unity Catalog volumes with GRANT READ for all account users.

If applicable, Maven coordinates and JAR library paths need to be added to the allowlist.

Databricks Runtime 11.3 LTS and above without Unity Catalog

Install libraries from workspace files. (File size limit is 500 MB.)

Databricks Runtime 10.4 LTS and below

Install libraries from cloud object storage.

Python library support

The following table indicates Databricks Runtime version compatibility for Python wheels for different cluster access modes based on the library source location. See Databricks Runtime release notes versions and compatibility and Access modes.

Note

Installing Python eggs is not supported with Databricks Runtime 14.0 and above. Use Python wheels or install packages from PyPI instead.

Shared access mode

Single user access mode

No isolation shared access mode (Legacy)

PyPI

13.3 LTS and above

All supported Databricks Runtime versions

All supported Databricks Runtime versions

Workspace files

13.3 LTS and above

13.3 LTS and above

14.1 and above

Volumes

13.3 LTS and above

13.3 LTS and above

Not supported

Cloud storage

13.3 LTS and above

All supported Databricks Runtime versions

All supported Databricks Runtime versions

DBFS (Not recommended)

Not supported

14.3 and below

14.3 and below

Java and Scala library support

The following table indicates Databricks Runtime version compatibility for JAR files for different cluster access modes based on the library source location. See Databricks Runtime release notes versions and compatibility and Access modes.

Note

Shared access mode requires an admin to add Maven coordinates and paths for JAR libraries to an allowlist. See Allowlist libraries and init scripts on shared compute.

Shared access mode

Single user access mode

No isolation shared access mode (Legacy)

Maven

13.3 LTS and above

All supported Databricks Runtime versions

All supported Databricks Runtime versions

Workspace files

Not supported

Not supported

14.1 and above

Volumes

13.3 LTS and above

13.3 LTS and above

Not supported

Cloud storage

13.3 LTS and above

All supported Databricks Runtime versions

All supported Databricks Runtime versions

DBFS (Not recommended)

Not supported

14.3 and below

14.3 and below

R library support

The following table indicates Databricks Runtime version compatibility for CRAN packages for different cluster access modes. See Databricks Runtime release notes versions and compatibility and Access modes.

Shared access mode

Single user access mode

No isolation shared access mode (Legacy)

CRAN

Not supported

All supported Databricks Runtime versions

All supported Databricks Runtime versions

Notebook-scoped libraries

Notebook-scoped libraries, available for Python and R, allow you to install libraries and create an environment scoped to a notebook session. These libraries do not affect other notebooks running on the same cluster. Notebook-scoped libraries do not persist and must be re-installed for each session. Use notebook-scoped libraries when you need a custom environment for a specific notebook.

Note

JARs cannot be installed at the notebook level.

Important

Workspace libraries have been deprecated and should not be used. See Workspace libraries (legacy). However, storing libraries as workspace files is distinct from workspace libraries and is still fully supported. You can install libraries stored as workspace files directly to compute or job tasks.

Python environment management

The following table provides an overview of options you can use to install Python libraries in Databricks.

Python package source

Notebook-scoped libraries with %pip

Cluster libraries

Job libraries with Jobs API

PyPI

Use %pip install. See example.

Select PyPI as the source.

Add a new pypi object to the job libraries and specify the package field.

Private PyPI mirror, such as Nexus or Artifactory

Use %pip install with the --index-url option. Secret management is available. See example.

Not supported.

Not supported.

VCS, such as GitHub, with raw source

Use %pip install and specify the repository URL as the package name. See example.

Select PyPI as the source and specify the repository URL as the package name.

Add a new pypi object to the job libraries and specify the repository URL as the package field.

Private VCS with raw source

Use %pip install and specify the repository URL with basic authentication as the package name. Secret management is available. See example.

Not supported.

Not supported.

File path

Use %pip install. See example.

Select File path/GCS as the source.

Add a new egg or whl object to the job libraries and specify the file path as the package field.

GCS

Use %pip install together with a pre-signed URL. Paths with the GCS protocol gs:// are not supported.

Select File path/GCS as the source.

Add a new egg or whl object to the job libraries and specify the GCS path as the package field.

Python library precedence

You might encounter a situation where you need to override the version for a built-in library, or have a custom library that conflicts in name with another library installed on the cluster. When you run import <library>, the library with the high precedence is imported.

Important

Libraries stored in workspace files have different precedence depending on how they are added to the Python sys.path. A Databricks Git folder adds the current working directory to the path before all other libraries, while notebooks outside Git folders add the current working directory after other libraries are installed. If you manually append workspace directories to your path, these always have the lowest precedence.

The following list orders precedence from highest to lowest. In this list, a lower number means higher precedence.

  1. Libraries in the current working directory (Git folders only).

  2. Libraries in the Git folder root directory (Git folders only).

  3. Notebook-scoped libraries (%pip install in notebooks).

  4. Cluster libraries (using the UI, CLI, or API).

  5. Libraries included in Databricks Runtime.

    • Libraries installed with init scripts might resolve before or after built-in libraries, depending on how they are installed. Databricks does not recommend installing libraries with init scripts.

  6. Libraries in the current working directory (not in Git folders).

  7. Workspace files appended to the sys.path.