conda create --name python=version:3.8.0 conda list #Gives you list of packages used for the environment conda list -e > requirements.txt #Save all the info about packages to your folder To export environment file activate conda env export > .yml
For other person to use the environment
conda env create -f .yml
- Python