
Ultimate access to all questions.
How can a data science team ensure that a custom Python library, custom_lib, is available to all notebooks running on a shared Databricks cluster?_
A
Configure the cluster to use the Databricks Runtime for MLlib.
B
Include the path to custom_lib in the PYTHONPATH variable within the cluster configuration._
C
Execute %pip install custom_lib in any notebook connected to the cluster._
D
Add dbutils.library.installPyPI('custom_lib') to the cluster's initialization script._
E
It is impossible to make custom_lib available on the cluster._