CondaValueError: Value error: prefix already exists:

前端 未结 4 1579
北荒
北荒 2021-02-13 14:27

Reference:

https://uoa-eresearch.github.io/eresearch-cookbook/recipe/2014/11/20/conda/

I\'ve run the following commands to install conda and create a virtual env

4条回答
  •  我寻月下人不归
    2021-02-13 15:09

    You can overwrite the existing enviroment by adding the --force option.

    So:

    conda create -n ENV1 python=2.7.12 anaconda --force

    Make sure that you have updated you anaconda because it is a recent function.

提交回复
热议问题