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.
Asked
Active
Viewed 2.4k times
1 Answers
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
-
I would recommend doing `pip install --user` instead, so you don't have to pollute the site's installation. It's just safer. – Emre Mar 17 '14 at 23:57
-
1For me, `sudo pip install jupyter` was missing. – Martin Thoma Nov 14 '15 at 21:56