Anaconda Cheat Sheet

Anaconda 速查手册

image-20230909104618623

Using environment #

Save env to a yaml file #

  • Export the environment to a ‘yml’ file

    conda env export > env.yml
    
  • Transfer the file to another machine

  • Create the Environment on the New Machine

    conda create -f env.yml --name envname
    

更新于: 2023 年 9 月 9 日