jupyter notebook で起動できるようにする

目次へ

IPython に関する新しい本を見つけた。

Learning IPython for Interactive Computing and Data Visualization, second edition

それによると Jupyter notebook を起動するには jupyter notebookで起動すると書いてある。しかし使用しているものは ipython notebook で notebook を起動できるが jupyter notebook では起動できない。検索した結果次に書いてあった。

Installation — Jupyter Documentation 4.0.0.dev documentation

conda を使ってインストールしたので次を実行してアップデートができた。

$ conda install jupyter

$ jupyter --version
4.0.6
$ ipython
Python 2.7.10 |Anaconda 2.0.1 (x86_64)| (default, Oct 19 2015, 18:31:17) Type "copyright", "credits" or "license" for more information. IPython 4.0.0 -- An enhanced Interactive Python. ?         -> Introduction and overview of IPython's features. %quickref -> Quick reference. help      -> Python's own help system. object?   -> Details about 'object', use 'object??' for extra details.

これで jupyter notebook で起動できるようになった。

Jupyter がよく分かる Yutube があるのでここに書き留める

  1. 1. Introduction - Jupyter Tutorial (IPython 3)
  2. 2. Markdown & LaTeX - Jupyter Tutorial (IPython 3)
  3. 3. Python 3 - Jupyter Tutorial (IPython 3)

目次へ