jupyter notebooks:如何启用widget javascript?

时间:2017-10-25 06:17:55

标签: javascript python jupyter-notebook

我正试图在virtualenv中运行一个jupyter笔记本。但是在启动它并创建一个简单的Widget Javascript not detected. It may not be installed properly. Did you enable the widgetsnbextension? If not, then run "jupyter nbextension enable --py --sys-prefix widgetsnbextension" 示例时,我收到以下错误:

from ipywidgets import Button, HBox
from ipywidgets import *

button = Button()
button.description = "Test"
display(button)

示例代码在这里:

jupyter nbextension enable --py widgetsnbextension
jupyter nbextension enable --py --sys-prefix widgetsnbextension

我在终端上运行了以下命令:

ipywidgets

我已经重新启动了笔记本,并且还看到了类似的问题modulehere,但我仍然遇到同样的错误。

  • python 2.7.12
  • ipywidgets 5.2.2
  • firefox 56.0
  • ubuntu 16.04.3

我需要保留BeautifulSoup版本才能测试某些内容。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:

请务必从系统配置中删除与jupyternotebookipywidgets相关的任何内容,并重新安装virtualenv中的所有内容。然后运行这个enable命令,启动笔记本,它应该工作...