使用 ipython 创建自定义小部件所需的模块?

modules needed to create a custom widget with ipython?

创建自定义小部件需要哪些模块?我已经使用以下命令安装了 ipywidgets 模块:"conda install ipywidgets" 我尝试 运行 这个在 github here 中找到的示例但是浏览器说文件 "jupyter-js-widgets" 是未找到。

感谢您的帮助

您使用的是哪个 conda 版本?您是否尝试在非 root 环境中安装它?

您可以尝试这样做:

  1. conda create -n test-ipywidgets python=3.5
  2. source activate test-ipywidgets
  3. conda install ipywidgets
  4. jupyter notebook

然后导航到您下载的 Hello World 笔记本文件。