conda-export
environment specification exporter
TLDR
Export current environment
$ conda export > [environment.yml]
Export without builds$ conda export --no-builds > [environment.yml]
Export from history only$ conda export --from-history > [environment.yml]
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
conda(1), conda-env(1), conda-list(1)
