如何在anaconda中将现有环境克隆到基本环境

时间:2019-01-28 08:24:12

标签: python linux anaconda

我对蟒蛇有一些环境(考虑A,B,C)。我想以A环境为基础或根。我该如何实现?

大多数问题是关于将一​​个环境克隆到另一个环境,但我想将一个环境克隆到基础。

我尝试过:

conda create --name base --clone tf2

但是我得到了

CondaValueError: The target prefix is the base prefix. Aborting.

1 个答案:

答案 0 :(得分:1)

我通过更改顺序解决了这个问题。您可以尝试:

conda create --clone tf2 -n base