我正试图在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
我已经重新启动了笔记本,并且还看到了类似的问题module和here,但我仍然遇到同样的错误。
我需要保留BeautifulSoup
版本才能测试某些内容。
答案 0 :(得分:0)
我找到了解决方案:
请务必从系统配置中删除与jupyter
,notebook
,ipywidgets
相关的任何内容,并重新安装virtualenv中的所有内容。然后运行这个enable
命令,启动笔记本,它应该工作...