How to install the latest IPython notebook in Ubuntu 12.04?

23,958

Found it. Here's how:

sudo pip install --upgrade ipython[all]

It then complains about missing jinja2.

sudo pip install jinja2
Share:
23,958

Related videos on Youtube

elexhobby
Author by

elexhobby

Updated on September 18, 2022

Comments

  • elexhobby
    elexhobby over 1 year

    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.

  • Emre
    Emre about 10 years
    I would recommend doing pip install --user instead, so you don't have to pollute the site's installation. It's just safer.
  • Martin Thoma
    Martin Thoma over 8 years
    For me, sudo pip install jupyter was missing.