远程连接linux服务器中jupyter服务器配置:
1)转换环境:
conda env list
source activate ****
2)生成jupyter配置文件:
jupyter notebook --generate-config
#此命令会在目录~下生成.jupyter文件夹及jupyter_notebook_config.py配置文件
3)生成密钥,用于登录jupyter
jupyter notebook password
4)修改2)中生成的jupyter的配置文件:
①
vi ~/.jupyter/jupyter_notebook_config.py
回车
②
在文件末增加内容(文件很长,快捷键-大写G,直接跳到文件末尾):
c.NotebookApp.allow_remote_access = True
c.NotebookApp.open_browser = False
c.NotebookApp.ip = '*'
c.NotebookApp.allow_root = True
c.NotebookApp.port = 1111
注:上述属性在配置文件中默认都是注释掉,而且文档较长,一个个找起