1. install Anaconda

https://www.anaconda.com/download/#linux

2. config jupyter

$ ipython
from notebook.auth import passwd
passwd()

$ jupyter notebook --generate-config
$vim ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.ip='your_ip_address'
c.NotebookApp.password = u'sha1:**********************'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8900

$jupyter notebook
05-28 19:33