http://jupyter-notebook.readthedocs.io/en/stable/public_server.html
pip install jupyter
jupyter_notebook_config.py
jupyter notebook --generate-config
>>> from notebook.auth import passwd
>>> passwd()
then type you own password which is a hash value
jupyter_notebook_config.py
c.NotebookApp.password = u‘sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed‘
c.NotebookApp.ip = ‘*‘
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
yum install pandoc
yum install texlive-*
sudo mktexlsr
jupyter notebook --allow-root &
running a notebook server on centos
原文:https://www.cnblogs.com/otfsenter/p/8893904.html