$ sudo pip install --upgrade pip
$ sudo pip install jupyter
$ ipython
In [1]: from IPython.lib import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]:~~~~~~Hashed Passwort ~ ~ ~ ~
Out[2]:exit
$ mkdir ~/jupyter_dir
$ jupyter notebook --generate-config
Writing default config to: ~/.jupyter/jupyter_notebook_config.py
$ vi + ~/.jupyter/jupyter_notebook_config.py
jupyter_notebook_config.py
Fügen Sie der letzten Zeile Folgendes hinzu
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 9999
c.NotebookApp.password = u'<Hash-Schlüssel erstellt>'
c.NotebookApp.notebook_dir = '<Verzeichnis erstellt>'
$ cd ~
$ nohup jupyter notebook >> jupyter.log 2>&1 &
Wenn ein Fehler auftritt, können Sie dies unter (~ / jupyter.log) herausfinden.
http://IPアドレス:9999
Recommended Posts