我在aws的一个jupyter笔记本上工作,希望用预言家进行时间序列预测。我正在使用conda_python3内核。根据https://facebook.github.io/prophet/docs/installation.html#python的安装指令,在安装先知之前我需要设置gcc,但是当我尝试'%conda‘时,我会得到环境不一致的错误信息。
有人知道如何解决这个问题吗?
错误消息:
收集包元数据(current_repodata.json):完成解决环境:/环境不一致,请仔细检查包计划,以下软件包造成了不一致:
CondaError: KeyboardInterrupt
注意:您可能需要重新启动内核才能使用更新的包。
发布于 2022-06-14 01:48:28
你确认GCC还没有安装吗?我在一个选择了SageMaker内核的conda_python3笔记本实例上运行了下面的代码。
!gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.https://stackoverflow.com/questions/72587474
复制相似问题