View a list of virtual environments
> conda info -e
For display only
> conda env export
Export package information
> conda env export > myenv.yaml
Separately, build the environment on the machine. (I haven't tried it yet)
> conda env create --file myenv.yaml
I referred to the following article. Recommendation for building a portable Python environment with conda
Recommended Posts