wiki:linux/jupyter

Version 2 (modified by yuna, 8 years ago) (diff)

--

# Jupyter Notebookメモ

CentOS7へのインストール。折角だからPython3系を利用してみる。 bashカーネルも入れておく。

yum install -y epel-release
yum install -y python34
curl -L https://bootstrap.pypa.io/get-pip.py | python3
pip3 install jupyter
pip3  install bash_kernel
python3 -m bash_kernel.install
jupyter-notebook

外部からアクセスするときは、下記のファイルを適宜編集。

~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 8888