user2122377
user2122377

Reputation: 23

Unable to open an existing notebook in IPython Notebook

I want to open a notebook, say 'IPython - beyond normal Python'. To achieve this, I perform the following steps, in order.

  1. Move to the place where IPython Notebook is installed.
  2. cd to 'Notebooks'. iPython dashboard opens in a browser with list of available notebooks.
  3. Click on the desired notebook.

The third step opens a new tab, but I can't see the contents of the notebook. A screen shot of what appears under that tab is shown below.Contents of the new tab that opens upon completion of step 3.

How can I see the contents of the notebook?

Upvotes: 0

Views: 3961

Answers (1)

Matt
Matt

Reputation: 27843

I would say that the notebook format is v3 and you are running IPython v0.12 that only read notebook v3. There is a warning message in newer versions if the notebook version is more recent than IPython.

Also IPython, not iPython if possible.

Upvotes: 1

Related Questions