创建自定义小部件需要哪些模块?我已经使用以下命令安装了ipywidgets模块:" conda install ipywidgets"我尝试在github here中运行此示例,但浏览器说文件" jupyter-js-widgets"找不到。
谢谢你的帮助
答案 0 :(得分:0)
您使用的是什么conda版本?您是否尝试在非root环境中安装它?
您可以尝试:
conda create -n test-ipywidgets python=3.5
source activate test-ipywidgets
conda install ipywidgets
jupyter notebook
然后导航到您下载的Hello World笔记本文件。