LoginSignup
6
9

More than 5 years have passed since last update.

JupyterNotebookの導入

Last updated at Posted at 2019-03-21

Jupyter Notebook の導入

参考サイト

  • pipのアップグレードを行う。
  python -m pip install -U pip

010-pip-upgrade.png

  • Jupyter Notebook のインストールを行う。
  python -m pip install -U jupyter

020-jupyternotebook-install-01.png

030-jupyternotebook-install-02.png

  • Jupyter Notebook のバージョンが5.7.6の場合、ブラウザ起動直後のホーム上に何も表示されない不具合(?)があるので、バージョンダウンする。
  python -m pip install -U notebook==5.7.4
  • また、このままだとNotebook編集中にKernelへの接続が完了せず実行ができない。(Connecting kernelのまま)
    以下コマンドを実行してtornadeをダウングレードする。(最新の6.0.0の不具合?)
    なお、tornadeは非同期通信を行うWebフレームワークを実現するためのパッケージ。
  python -m pip install -U tornado==5.1.1
  • インストール完了。以下コマンドでJupyter Notebookを起動する。
  jupyter notebook

050-jupyternotebook-home.png

  • 導入完了!
6
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
9