LinuxCommandLibrary

conda-list

installed packages viewer

TLDR

List packages in current environment

$ conda list
copy
List packages in specific environment
$ conda list -n [env_name]
copy
List packages matching pattern
$ conda list [pattern]
copy
Show as revisions
$ conda list --revisions
copy
Export to file
$ conda list --export > [packages.txt]
copy

SYNOPSIS

conda list [options] [regex]

DESCRIPTION

conda list displays packages installed in a conda environment. By default shows packages in the current active environment.
Use regex patterns to filter the list.

PARAMETERS

-n, --name name

List packages in named environment.
--export
Output in format for conda create --file.
--revisions
List revision history.
--json
Output in JSON format.

CONFIGURATION

~/.condarc

User-level conda configuration for channels, package settings, and solver options.
/opt/conda/.condarc
System-wide conda configuration.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community