我喜欢黑暗题材。但是,Jupyter笔记本的默认主题是浅色,我找不到更改主题/背景色的选项。这是怎么做到的?
当前回答
使用conda直接安装Jupyterthemes包,使用:
conda install -c conda-forge jupyterthemes
然后,正如其他人指出的那样,使用jt -t <theme-name>更改主题
其他回答
你可以按照这些步骤来做。
PIP install jupyterthemes或PIP install——upgrade jupyterthemes以升级到最新版本的主题。 然后列出所有的主题:jt -l 在jt-t <themename>之后,例如jt-t solarizedl
如果有人有兴趣在启用主题的docker中运行anaconda
docker run -t --rm -p 8888:8888 -v $(pwd):/opt/notebooks continuumio/anaconda3 /bin/bash -c "pip install jupyterthemes; jt -t onedork; /opt/conda/bin/jupyter notebook --ip=0.0.0.0 --port=8888 --notebook-dir=/opt/notebooks --allow-root --no-browser;"
我的完整解决方案:
1)在chrome上获得黑暗读者,这不仅会让你为Jupyter一个伟大的黑暗主题,而且为每一个你想要的网站(你可以玩不同的过滤器。我使用Dynamic)。
2)将这些代码行粘贴到你的笔记本上,这样图例和轴就可以看到了:
from jupyterthemes import jtplot
jtplot.style(theme='monokai', context='notebook', ticks=True, grid=False)
你已经为迪斯科编码之夜做好了准备!
您可以使用运行笔记本中的set_nb_theme更改主题
!pip install jupyterthemes
from jupyterthemes import get_themes
import jupyterthemes as jt
from jupyterthemes.stylefx import set_nb_theme
set_nb_theme('chesterish')
从https://www.kaggle.com/getting-started/97540粘贴
使用FireFox插件“暗黑木星”。
推荐文章
- 禁止在vim中创建交换文件
- 如何从终端运行。ipynb Jupyter Notebook ?
- 移除jupyter笔记本上的内核
- 基于gui或基于web的JSON编辑器,工作方式类似于属性浏览器
- 如何加载/编辑/运行/保存文本文件(.py)到IPython笔记本细胞?
- 如何改变AlertDialog的主题
- notepad++是否显示所有隐藏字符?
- 在安装pip后,“jupyter:命令未找到”
- 在IPython中自动重载模块
- 去第一行的文件在vim?
- 如何防止谷歌Colab断开连接?
- 如何在notepad++文本编辑器中更改背景颜色?
- 如何在Jupyter Notebook中显示文件中的图像?
- 修改IPython/Jupyter笔记本工作目录
- 在ipython笔记本中测量单元格执行时间的简单方法