Is there a way to list packages / version installed on a cluster ?

Anonymous
Not applicable
 

Mooune_DBU
Databricks Employee
Databricks Employee

If you're looking for python packages, you can use standard conda list commands (see example below):

%conda list

View solution in original post

zerasmus
Contributor

On newer Databricks Runtime versions, %conda commands are not supported. You can use %pip commands instead:

%pip list

 I have tested this on Databricks Runtime 15.4 LTS Beta.