0

what are modules needed to create a custom widget? I have installed ipywidgets module with the command : "conda install ipywidgets" and I tried to run this example found in github here but the browser says that the file "jupyter-js-widgets" is not found.

thank you for your help

DevDev
  • 313
  • 2
  • 12

1 Answers1

0

What conda version are you using? Did you try installing it in the non-root environment?

You can try doing:

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

Then navigate to the Hello World notebook file that you have downloaded.

Paul
  • 5,473
  • 1
  • 30
  • 37