【发布时间】:2016-03-10 12:53:03
【问题描述】:
创建自定义小部件需要哪些模块?我已经使用以下命令安装了 ipywidgets 模块:“conda install ipywidgets”,我尝试运行在 github here 中找到的这个示例,但浏览器说找不到文件“jupyter-js-widgets”。
感谢您的帮助
【问题讨论】:
标签: ipython jupyter-notebook ipywidgets
创建自定义小部件需要哪些模块?我已经使用以下命令安装了 ipywidgets 模块:“conda install ipywidgets”,我尝试运行在 github here 中找到的这个示例,但浏览器说找不到文件“jupyter-js-widgets”。
感谢您的帮助
【问题讨论】:
标签: ipython jupyter-notebook ipywidgets
您使用的是什么 conda 版本?您是否尝试在非root环境中安装它?
你可以试试:
conda create -n test-ipywidgets python=3.5source activate test-ipywidgetsconda install ipywidgetsjupyter notebook然后导航到您下载的 Hello World 笔记本文件。
【讨论】: