无法从Spyder中的IPython.html.widgets导入小部件

时间:2017-08-22 20:26:45

标签: python ipython spyder ipywidgets

我正在使用spyder来运行我的代码。

from Ipython.html.widgets import interact, ButtonWidget

我尝试将Ipython.html.widgets替换为ipywidgets并执行它。它让我失望了:

from ipywidgets import interact, ButtonWidget

ImportError: cannot import name ButtonWidget"

1 个答案:

答案 0 :(得分:3)

你说

  

我正在使用spyder来运行我的代码。

但是,IPython Widgets代码无法在Spyder中运行,因为它的控制台无法显示Html内容。

所以你需要在Jupyter笔记本中运行这段代码。