Forrest logo
back to the conda tool

conda:tldr:892c2

conda: List currently installed packages in current environment.
$ conda list
try on your machine

The command "conda list" is used in the conda package management system to display a list of all installed packages in the current conda environment.

When you execute the "conda list" command, it will retrieve and display information about all packages that have been installed using conda in the current environment. This includes the package name, version number, and some additional information such as the build string and channel where the package was obtained from.

The list of packages is typically displayed in a tabular format with columns representing different attributes of each package.

Using "conda list" can be helpful to quickly check which packages are installed in a conda environment, their versions, and for troubleshooting purposes. It allows you to ensure that the necessary packages are present and verify the compatibility of the installed packages with your project or application.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the conda tool