コンテンツにスキップ

Jupyter

PIPのインストール

1
2
3
$ sudo apt-get install python-dev
$ sudo wget https://bootstrap.pypa.io/get-pip.py
$ sudo python ./get-pip.py

  • sudo apt-get install python-pipではうまくpipがインストールできない。

Jupyterのインストール

1
$ sudo pip install jupyter

30分ほど時間がかかります。

他の便利なライブラリのインストール

1
$ sudo pip install panda numpy

10分ほど時間がかかります。

1
$ sudo apt-get install python-matplotlib

Matplot libでは、SWAPが必要になるので

swap停止

1
$ sudo /etc/init.d/dphys-swapfile stop

swap増加

1
$ sudo vi /etc/dphys-swapfile

/etc/dphys-swapfile

1
CONF_SWAPSIZE=1024

swap起動

1
2
$ sudo /etc/init.d/dphys-swapfile start
$ reboot

固定Tokenの作成

1
$ jupyter notebook --generate-config
1
$ vi ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.tokenのコメントアウトを消し、任意のTokenを指定する。(今回はfaboと指定)

~/.jupyter/jupyter_notebook_config.py

1
2
3
4
5
6
7
## Token used for authenticating first-time connections to the server.
#
#  When no password is enabled, the default is to generate a new, random token.
#
#  Setting to an empty string disables authentication altogether, which is NOT
#  RECOMMENDED.
c.NotebookApp.token = 'fabo'

Jupyterの起動

1
$ jupyter-notebook --ip= --config=/home/pi/.jupyter/jupyter_notebook_config.py
1
$ ifconfig -a

RaspberryPIのIPアドレスを確認し、自分のマシンのブラウザから

http://192.168.x.x:8888/

8888番ポートに接続する。