IT業界のすみっこ暮らし

ふと気がついたときの記録



Jupyter Notebookインストール手順

Installing Jupyter Notebook — Jupyter Documentation 4.1.1 alpha documentation

1、pip3更新

pip3 install --upgrade pip

2、pip3を使ってjupyterをインストール

pip3 install jupyter

3、notebookの設定ファイルを生成

jupyter notebook --generate-config

4、notebookのパスワードを設定(ログインパスワード)

jupyter notebook password
Enter password:  ****
Verify password: ****

5、jupyter notebook起動

jupyter notebook


設定ファイルを生成しないまま、jupyter notebook 起動した場合にはこの画面が表示される

f:id:papamau:20170630221505p:plain

設定ファイル生成&パスワード設定後、localhost:8888にアクセス

f:id:papamau:20170630221548p:plain

設置完了!

f:id:papamau:20170630221601p:plain

昨日テスト用に作ったファイルを開いてみた f:id:papamau:20170630222944p:plain

新しいnoteを作成してみた f:id:papamau:20170630223454p:plain

Untitled.ipynbファイルが追加されていることが分かる f:id:papamau:20170630223555p:plain

Pythonでグラフ描画:matplotlib(6)を参考にグラフも描いてみた f:id:papamau:20170630224420p:plain なにコレ面白い!

忘れそうなのでnumpyとpylabのダウンロード方法

pip3 install numpy
pip3 install matplotlib

今日はここまで!

追記

起動方法は分かるんだけど、どう止めれば良いか迷ったので調べてみた

python - How to close IPython Notebook properly? - Stack Overflow

  • There isn't currently a better way to do it than Ctrl+C in the terminal.

なるほど





プライバシーポリシー