You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 207 B

12345678910
  1. ## How to Generate Environment Yaml
  2. * create env config for conda:
  3. ```shell
  4. conda env export | grep -v "^prefix: " > environment.yml
  5. ```
  6. * recover env from config
  7. ```
  8. conda env create -f environment.yml
  9. ```