LinuxCommandLibrary

conda-export

environment specification exporter

TLDR

Export current environment

$ conda export > [environment.yml]
copy
Export without builds
$ conda export --no-builds > [environment.yml]
copy
Export from history only
$ conda export --from-history > [environment.yml]
copy

SYNOPSIS

conda export [options]

DESCRIPTION

conda export outputs the current environment specification in YAML format. This can be used to recreate the environment on another system.
Use --from-history for more portable exports that don't include transitive dependencies.

PARAMETERS

--no-builds

Exclude build strings from output.
--from-history
Only include packages explicitly requested.
-n, --name name
Name of environment to export.

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