我有以下conda环境文件environment.yml:

name: testproject
channels:
- defaults
dependencies:
- python=3.7
prefix: /opt/projects/testproject

在创建环境之前,仅存在基本环境:
(base) me@mymachine:/opt/projects/testproject$ conda env list
# conda environments:
#
base                  *  /opt/anaconda/anaconda3

尝试创建环境时,出现以下错误:
(base) me@mymachine:/opt/projects/testproject$ conda create -f environment.yml

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

这个错误是什么意思?

最佳答案

您需要使用

conda env create -f environment.yml

注意env之后和conda之前的额外create

有关更多信息,请检查documentation

关于python - CondaValueError : The target prefix is the base prefix.中止,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56871882/

10-13 02:05