2020
09-27
09-27
服务器端jupyter notebook映射到本地浏览器的操作
1、远程服务器上安装jupyternotebook(配置jupyter_notebook_config.py文件)sudopipinstalljupyter2、远程服务器(8890端口,没有下面括号中内容默认在服务器8888端口打开jupyternotebook,下面将使用默认端口8888)启动jupyternotebookjupyternotebook(--no-browser--port=8890--ip=127.0.0.1--allow-root)3、将远程jupyter(8888)与本地(8889)端口绑定ssh-f-N-L8889:localhost:8888((-L本地端口:localhost:服...
继续阅读 >