LoginSignup
64
68

More than 3 years have passed since last update.

Jupyter Notebookのインストール

Last updated at Posted at 2018-02-28

はじめに

Jupyter NotebookをmacOSに導入した際の記録(手順メモ)です。

  • macOS High Sierra
  • Python3.6.4

pipを更新、必要なパッケージをインストール

pipを最新の状態へ更新し、必要なパッケージをインストールします。

$ pip install --upgrade pip setuptools
$ pip install numpy scipy matplotlib Pillow ipython[all]

Jupyter Notebookをインストールする

Jupyter Notebookをインストールします。

$ pip install jupyter

確認する

以下を実行し、ブラウザでJupyter Notebookが開けるか確認します。

$ jupyter notebook

自分の環境では、ターミナル上に表示されたurlを貼り付けないと、ページが表示されなかったが、何かやらないといけないことがあるのでしょうか。とりあえず、後日調査予定です。

64
68
4

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
64
68