10

问:我在 MacOs 10.9 中使用 pip3 安装了 python3 和 jupyter notebook。
当我尝试运行小部件时,它会给出没有 javascript 小部件的错误。我在 Jupyter-notebook 中安装了 python3 和 R 内核。

代码:

from ipywidgets import widgets
from IPython.display import display
text = widgets.Text()
display(text)
text.on_submit('hello')

错误:

Widget Javascript not detected.  It may not be installed or enabled properly.  

尝试:

sudo -H pip3 install ipywidgets  
sudo -H pip3 install -upgrade ipywidgets  
jupyter nbextension enable --py widgetsnbextension
# restarted the computer. 

最后一个命令给出错误。

[EnableNBExtensionApp] CRITICAL | Bad config encountered during initialization:
[EnableNBExtensionApp] CRITICAL | Unrecognized flag: '--py'

请注意,在 mac 我有 jupyter-nbextension 命令,但命令:

jupyter-nbextension enable --py widgetsnbextension 

也不起作用。

但是jupyter nbextension enable widgetsnbextension没有错误,也什么都不做。如果我运行代码,则会弹出相同的错误。

还,

import ipywidgets
ipywidgets.__version__

给出'6.0.0'。

一些注意事项:

which jupyter  
jupyter is /Library/Frameworks/Python.framework/Versions/3.5/bin/jupyter
which jupyter-notebook
jupyter-notebook is /Library/Frameworks/Python.framework/Versions/3.5/bin/jupyter-notebook

相关链接:

https://github.com/jupyter-widgets/ipywidgets/issues/541    
https://github.com/jupyter/help/issues/32    
https://github.com/jupyter/help/issues/131    
https://github.com/binder-project/binder/issues/83   

如何安装小部件?
我需要单独安装java吗?

4

5 回答 5

8

运行以下命令: jupyter nbextension enable --py --sys-prefix widgetsnbextension,然后在 Jupyter 中重新启动内核应该可以解决问题。

于 2017-05-05T06:35:46.763 回答
4

我在 Jupyter、Mac OS、Python 3.6 和 Anaconda 中成功使用了以下命令。第一条命令此时获取最新版本的 ipywidgets(版本 7.0)。

conda install -c conda-forge ipywidgets

jupyter nbextension enable --py widgetsnbextension
于 2017-09-18T23:31:14.197 回答
1

我遇到了同样的问题,运行 command: 后jupyter nbextension enable --py --sys-prefix widgetsnbextension,应该出现提示:

>Enabling notebook extension jupyter-js-widgets/extension...

- Validating: ok. 刷新你的 jupyter notebook 并且小部件工作。

于 2017-08-02T18:54:44.557 回答
1

可能是最好的方法,至少它对我有用:重新安装 ipywidgets 和 widgetsextension,它应该可以工作。

pip uninstall ipywidgets widgetsnbextension

pip install ipywidgets

jupyter nbextension enable --py --sys-prefix widgetsnbextension
于 2017-09-26T11:11:44.453 回答
1

这为我解决了它:

jupyter labextension install @jupyter-widgets/jupyterlab-manager
于 2018-02-12T13:54:39.773 回答