conda env export -> environment.yml
conda list -> spec-file.txt (All produce raw text. File names seems to be convention)
The document is a little bit confusing. It seems that the only differences are:
environment.yml
hasname
andchannel
fields;Their respective "restoration" command:
conda env create -f environment.yml...
vsconda create -f spec.txt...
.