Skip to content
Snippets Groups Projects
Commit c1a3ce93 authored by Jacques Grelet's avatar Jacques Grelet
Browse files

add Exporting and Creating From Environments

parent 5ae3ab86
No related branches found
No related tags found
No related merge requests found
......@@ -76,3 +76,17 @@ with
``` bash
import PySimpleGUIQt as gs
```
## Export and create from environments
Duplicate your environment on another machine, just export it to a YAML file:
``` bash
conda env export > environment.yml
```
Deploy to a new instance:
``` bash
conda env create -f environment.yml -n <new_env_name>
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment