3

The solution in this question on Stack Overflow, Unable to open an existing notebook in IPython Notebook, advises installing the latest notebook, but I was unable to find how to do so.

Zanna
  • 69,223
  • 56
  • 216
  • 327
elexhobby
  • 345
  • 1
  • 3
  • 13

1 Answers1

8

Found it. Here's how:

sudo pip install --upgrade ipython[all]

It then complains about missing jinja2.

sudo pip install jinja2
elexhobby
  • 345
  • 1
  • 3
  • 13