linux服务器端安装jupyter notebook并在本地使用

一、服务器端安装Anaconda

    注意不要安装到root文件夹下!!(踩坑了)
    这里我安装到了这个路径'/usr/local/Anaconda'

二、配置服务器

1、生成配置文件:

jupyter notebook --generate-config

路径是 ~/.jupyter/jupyter_notebook_config.py

2.配置Jupyter notebook密码

ipython
from notebook.auth import passwd
passwd()  #自定义密码,会提示输入两次,这个密码就是本地登录浏览器的密码

上述代码会生成一个密钥,记住该密钥。

3.3.修改配置文件~/.jupyter/jupyter_notebook_config.py

vim ~/.jupyter/jupyter_notebook_config.py

打开配置文件后,shift+g跳到末尾,i进入编辑模式,插入以下代码:

c.NotebookApp.ip='*' #设置访问notebook的ip,*表示所有IP

c.NotebookApp.password = u'sha1:xxx' #填写刚刚复制的密钥 

c.NotebookApp.open_browser = False # 禁止notebook启动时自动打开浏览器

c.NotebookApp.allow_root = True #允许root用户

c.NotebookApp.port =8889 #指定访问的端口,默认是8888。

c.NotebookApp.allow_remote_access = True # 是否允许远程访问

c.NotebookApp.notebook_dir = '/usr/local/bin/jupyter'  # 设置工作目录

esc退出编辑,shift + :wq保存

三、本地访问远端的服务器的jupyter

1.首先在Linux服务器上启动Jupyter notebook

jupyter notebook --no-browser --port=8889

2.然后在本地转发端口,用win+R 打开cmd, 进入终端。

ssh -N -f -L localhost:8888:localhost:8889 -p 22 remote_user@remote_host  # 默认端口是22
# remote_user@remote_host: 远程机器(服务器)用户名@服务器IP

最后,然后在本地打开浏览器输入以下内容:

http://localhost:8888/
或
http://10.10.10.253:8889

初次登录输入前述自定义的密码。

参考链接:
https://www.jianshu.com/p/d2ac1b9e6b24
https://blog.csdn.net/qq_45056135/article/details/123960321

你可能感兴趣的:(jupyter,python,linux)