Der iMac- und der Linux-Server im Labor haben bessere Spezifikationen. Dies ist also ein Einstellungsprotokoll, wenn Sie das Jupyter Lab verwenden können, das Sie normalerweise remote verwenden.
Ich habe auf dieses [Remote-Verwenden von Jupyter Lab] verwiesen (https://qiita.com/RayDoe/items/e1ec21c63a15adb1a061). Vielmehr ist es fast so wie es ist.
$ jupyter lab --generate-config
Writing default config to: /home/okuda/.jupyter/jupyter_notebook_config.py
$ ipython
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 19:07:31)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.9.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: from IPython.lib import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:xxxxxxxxx'
$ nano ~/.jupyter/jupyter_notebook_config.py
Bearbeiten Sie dann die erforderlichen Teile.
~/.jupyter/jupyter_notebook_config.py
c = get_config()
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.open_browser = False
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.port = 9999
c.NotebookApp.allow_remote_access = True
c.NotebookApp.password = 'sha1:xxxx'
$ ssh -p Portnummer[user]@[ip] -NL 9999:localhost:9999
Starten Sie Jupyter Lab und
http://localhost:9999/
Es ist in Ordnung, wenn Sie zugreifen.
~/.ssh/config
Host xxx
HostName xxx
User xxx
Port xxx
IdentityFile ~/.ssh/id_rsa_xxx
LocalForward 9999 localhost:9999
Es ist bequem!
Ist Prost auf gute Arbeit.
Recommended Posts