Quickly create a virtual environment in Anaconda

Use conda to export the existing environment when the environment is activated:

conda env export>environment.yaml;

Use the exported yaml file to move to other servers:

conda env create -f environment.yaml。

Guess you like

Origin blog.csdn.net/weixin_41807182/article/details/109155673