How can you “clone” a conda environment into the root environment?
问题 I'd like the root environment of conda to copy all of the packages in another environment. How can this be done? 回答1: Option 1 - YAML file When trying to import packages from a second environment into the root environment: Within the second environment, export package names to a yaml file: > conda env export > environment.yml then update the first environment (see Suggestion below): > conda env update -n root -f envoronment.yml See also conda env for more details. Alternatively, consider the