玩耍JupyterNotebook

本文最后更新于:2024年9月16日 下午

在docker中安装

1
2
3
4
5
6
7
# 映射容器内jupyter的工作目录
mkdir /home/jupyter
# 给jupyter写入文件夹的权限
chmod 777 /home/jupyter
# 映射端口和文件夹
docker run -d -v /home/jupyter:/home/jovyan/work --name=jupyter -p 13579:8888 jupyter/base-notebook

访问浏览器地址:127.0.0.1:13579,会进入jupyter页面,首次需要输入token。

获取token的方法是 docker logs jupyter ,然后会看到token字样。

从jupyter 5开始,可以通过命令设置密码,jupyter notebook password,输入两次密码后,今后就默认启用密码登录jupyter了,不然每次都要输入token

安装插件

进入容器命令行

1
2
3
4
5
# 安装
pip install jupyter_contrib_nbextensions

# 配置
jupyter contrib nbextension install --user --skip-running-check
然后可能要重新启动容器生效

安装主题及设置文字

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# install jupyterthemes
pip install jupyterthemes

# upgrade to latest version
pip install --upgrade jupyterthemes

# 查看可用主题
jt -l

# 查看jt帮助
jt --help

# 个性化设置示例
jt -t onedork -f roboto -fs 14 -nfs 14 -tfs 14 -ofs 11

常用快捷键

功能 快捷键
删除cell dd

高大全的science版

1
docker run --rm -p 8888:8888 -e JUPYTER_ENABLE_LAB=yes -v "$PWD":/home/jovyan/work jupyter/datascience-notebook:9b06df75e445

镜像下载有6g的大小


玩耍JupyterNotebook
https://andyppang.github.io/2020/05/12/玩耍JupyterNotebook/
作者
PL
发布于
2020年5月12日
许可协议