Jupyter Notebook 更换主题

2022-11-22 16:10:54 浏览数 (1)

代码语言:javascript复制

1. Jupyter Notebook 更换主题
1.安装插件需要

  • python 2.7,3.4,3.5,3.6
  • jupyter

2.安装 # 安装 jupyterthemes pip install jupyterthemes # 升级到最新版本 pip install --upgrade jupyterthemes   安装成功后,输入: jt -l #查看当前可用主题   更换主题: jt -r 相应的主题 -T -N #例如我选择的主题是:chesterish #则输入: jt -t chesterish -T -N #这里表示选择了chesterish这个主题,同时打开顶部的工具栏(Toolbar),显示笔记本的名字(Name)   恢复原来的主题: jt -r 2.使用主题时出错的解决方法 安装jupyterthemes后jt -l成功显示支持主题列表,再键入jt -t 主题名后,出现如下错误: nicodeDecodeError: 'gbk' codec can't decode byte 0x8b in position 41271: illegal multibyte sequence 解决办法:

  • 在安装路径中...anacondaLibsite-packagesjupyterthemes找到文件stylefx.py
  • 在60行添加encoding='utf-8'

with open(tempfile, 'w', encoding='utf-8') as f:

  • 在290行添加encoding='utf-8'

with open(nb_style, 'r', encoding='UTF-8') as notebook:

  • 在安装路径中...anacondaLibsite-packageslesscpylessc找到文件lexer.py
  • 在474行添加encoding='utf-8'

with open(file, encoding='utf-8') as f:

0 人点赞