Jupyter notebook 服务器 远程登录(Ubuntu)
1、python环境安装 2、jupyter notebook安装 3、命令行生成配置文件 $jupyter notebook --generate-config 4、打开notebook,设置密码,生成密文或在控制台输入命令 python -c "import IPython;print IPython.lib.passwd()" 5、修改配置文件,控制台输入 vim ~/.jupyter/jupyter_notebook_config.py c.NotebookApp.ip='*' c.NotebookApp.password=u'密文' c.NotebookApp.open_browser = False c.NotebookApp.port =8888 在配置文件中寻找四条语句, 取消注释"#" ,并修改 6、启动jupyter notebook,远程访问http://ip:8888(同一网络的主机都可访问) 输入登录密码,即步骤4设置的密码 文章来源: Jupyter notebook 服务器 远程登录(Ubuntu)