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
  • 72,312
elexhobby
  • 345

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