Linux 安装Jupyter notebook 并开启远程访问

一. Ubuntu下安装jupyter notebook

1. 使用Anaconda安装

conda install jupyter notebook

2. 使用pip安装

pip install jupyter notebook

二. Jupyter notebook 配置

1. 生成配置文件

jupyter notebook --generate-config

2. 创建密码

使用python中的passwd()创建密码,终端输入ipython打开ipython并输入:

In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password: ******
Verify password: ******
Out [2]: 'sha1:...'

复制Out [2] 显示的密码('sha1:...' 包括引号)。

3. 修改jupyter notebook的配置文件

  • 打开配置文件
vim ~/.jupyter/jupyter_notebook_config.py
  • 在该文件中做如下修改或直接在文件尾端添加:
c.NotebookApp.allow_remote_access = True #允许远程连接
c.NotebookApp.ip='*' # 设置所有ip皆可访问
c.NotebookApp.password = u'sha:..' #之前复制的密码,或者输入的字符
c.NotebookApp.notebook_dir = '/usr/local/spark/mycode/Covid-19-Analysis' # 启动的默认目录
c.NotebookApp.open_browser = False # 禁止自动打开浏览器
c.NotebookApp.port =8888 #任意指定一个端口

4. 启动jupyter notebook

终端输入:

jupyter notebook

或使用nohup后台运行 jupyter notebook:

nohup jupyter notebook >~/jupyter.log 2>&1 &

5. 远程访问jupyter notebook

本地浏览器输入http://(服务器地址):(配置文件中设定的端口); 假设服务器地址为192.168.1.129,配置的端口为8888,这里的浏览器输入地址应为http://192.168.1.129:8888; 即可访问jupyter notebook。

Jupyter Notebook 详解

posted @ 2022-06-11 15:09  RioTian  阅读(4329)  评论(1编辑  收藏  举报