環境
手順
インストール
$ pip3 install jupyter --user
export PATH=$HOME/.local/bin:$PATH
export PYTHONPATH=$HOME/.local/lib/python3.5/site-packages
$ source ~/.bashrc
設定ファイル生成
$ jupyter notebook --generate-config
~/.jupyter/jupyter_notebook_config.py が生成
設定ファイル(jupyter_notebook_config.py)変更
1. 本環境はサーバで別PCからアクセスするので、本環境内のWebブラウザでのJupyter起動を禁止する
* c.NotebookApp.open_browser = False
2. ポート番号の設定
* c.NotebookApp.port = 9999
3. ワーキングディレクトリの指定
* c.NotebookApp.notebook_dir = u'/home/user/jupyter'
4. ログインパスワードの設定
以下のコマンドで生成、「sha1~」をコピーし、「c.NotebookApp.password」に貼り付ける
$ ipython
In [1]: from notebook.auth import passwd
In [2]: passwd()
・・・
Out[2]: 'sha1:~~'
Out[3]: exit
5. IPアドレスの設定
* c.NotebookApp.ip = '~~'
起動
$ jupyter notebook