本文介绍了ModuleNotFoundError:没有名为“惊奇"的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经在Windows10中安装了scikit-surprise.
I have installed scikit-surprise in Windows10.
C:\Users\Cosmos Lord>pip install scikit-surprise
但是我仍然无法导入惊喜模块.
But I am still unable to import surprise module.
在Spyder3内核中,显示以下错误:
In Spyder3 kernel, the following error is shown:
import surprise
文件",第1行,在进口惊喜
File "", line 1, in import surprise
ModuleNotFoundError:没有名为惊奇"的模块
ModuleNotFoundError: No module named 'surprise'
在IDLE(Python-32位)中,显示以下错误:
Whereas in IDLE(Python-32 bit), the following error is shown:
如何导入惊喜?任何帮助将非常感激.
How do I import surprise? Any help would be much appreciated.
推荐答案
从Spyder内核(控制台)中,运行 pip install Surprise
From within Spyder kernel (console), run pip install surprise
然后重新启动内核.
它为我解决了问题
这篇关于ModuleNotFoundError:没有名为“惊奇"的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!