jupyter远程访问服务器并修改打开的默认路径

1.生成配置文件

jupyter notebook --generate-config

2.修改密码,这个密码就是远程登录需要输入的密码,同时会在config.son文件中生成一串密码字符串

jupyter notebook password
Enter password:  ****
Verify password: ****
[NotebookPasswordApp] Wrote hashed password to /Users/you/.jupyter/jupyter_notebook_config.json

3.复制jupyter_notebook_config.json的密码串

4.在jupyter_notebook_config.py文件中添加以下的代码

c.NotebookApp.ip='*'  
c.NotebookApp.allow_remote_access = True  # 允许远程连接
c.NotebookApp.password = u'sha1:...'  # config.son文件的那一串字符,必须以u开头
c.NotebookApp.open_browser = False  # 不自动打开浏览器
c.NotebookApp.port =6666  # 自行指定一个端口

5.运行jupyter

jupyter notebook
#始终运行,也就是挂载
nohup jupyter notebook 

6.在自己的电脑中输入http://服务器ip:端口,再输入之前设置的登录密码即可成功。

7.修改jupyter 默认打开的路径

c.NotebookApp.notebook_dir = '/XXX/XX/XX/XX'

你可能感兴趣的:(软件使用问题,jupyter,服务器,python)