markdown 复制并安装Ananconda环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 复制并安装Ananconda环境相关的知识,希望对你有一定的参考价值。

This is an example of exporting an environment so it can be used to create a new environment. It will also show how to specify a channel that should be included in the build process

First, you'll need to activate the environment you want to use.

```bash
activate old-environment
```

Then export then environment to `environment.yml`


```bash
conda env export -c esri > environment.yml
```

Finally, create the new environment

```bash
conda env create -n new-environment --file path-to-wherever-yousaved/environment.yml
```

以上是关于markdown 复制并安装Ananconda环境的主要内容,如果未能解决你的问题,请参考以下文章