我喜欢黑暗题材。但是,Jupyter笔记本的默认主题是浅色,我找不到更改主题/背景色的选项。这是怎么做到的?
当前回答
简单,Jupyter字体大小和内外背景颜色的全局更改(此更改将影响所有笔记本电脑)。
在Windows下,通过运行命令找到config目录: jupyter——config-dir
在Linux中是~/.jupyter
在此目录中创建子文件夹custom 创建文件custom.css并粘贴:
/* Change outer background and make the notebook take all available width */
.container {
width: 99% !important;
background: #DDC !important;
}
/* Change inner background (CODE) */
div.input_area {
background: #F4F4E2 !important;
font-size: 16px !important;
}
/* Change global font size (CODE) */
.CodeMirror {
font-size: 16px !important;
}
/* Prevent the edit cell highlight box from getting clipped;
* important so that it also works when cell is in edit mode */
div.cell.selected {
border-left-width: 1px !important;
}
最后,重启Jupyter。结果:
其他回答
你可以直接在打开的笔记本上完成:
!pip install jupyterthemes
!jt -t chesterish
重新启动主题应用程序的jupyter服务器
简单,Jupyter字体大小和内外背景颜色的全局更改(此更改将影响所有笔记本电脑)。
在Windows下,通过运行命令找到config目录: jupyter——config-dir
在Linux中是~/.jupyter
在此目录中创建子文件夹custom 创建文件custom.css并粘贴:
/* Change outer background and make the notebook take all available width */
.container {
width: 99% !important;
background: #DDC !important;
}
/* Change inner background (CODE) */
div.input_area {
background: #F4F4E2 !important;
font-size: 16px !important;
}
/* Change global font size (CODE) */
.CodeMirror {
font-size: 16px !important;
}
/* Prevent the edit cell highlight box from getting clipped;
* important so that it also works when cell is in edit mode */
div.cell.selected {
border-left-width: 1px !important;
}
最后,重启Jupyter。结果:
而不是在Jupyter内部安装一个库,我建议你使用Chrome中的“黑暗阅读器”扩展(你可以在其他浏览器中找到“黑暗阅读器”扩展,例如Firefox)。 你可以玩它;过滤URL(s)你想有黑暗主题,甚至如何定义黑暗主题为自己。 下面是几个例子:
我希望这能有所帮助。
conda install jupyterthemes
在Windows系统中不适合我。我用的是水蟒。
但是,
pip install jupyterthemes
在Anaconda Prompt工作过。
遵循以下步骤
使用pip安装jupyterthemes:
pip install jupyterthemes
然后从下面选择主题,并使用以下命令设置它们。一旦成功安装,我们中的许多人认为我们需要再次启动jupyter服务器,只需刷新页面。
使用以下命令设置主题:
jt -t <theme-name>
可用的主题:
onedork grade3 oceans16 chesterish monokai solarizedl solarizedd
可用主题的截图在其Github存储库中。
在设置主题时,还可以在同一个命令中指定-T(——toolbar)来保留工具栏,否则工具栏将不显示。如需帮助,请输入jt -h。
推荐文章
- 禁止在vim中创建交换文件
- 如何从终端运行。ipynb Jupyter Notebook ?
- 移除jupyter笔记本上的内核
- 基于gui或基于web的JSON编辑器,工作方式类似于属性浏览器
- 如何加载/编辑/运行/保存文本文件(.py)到IPython笔记本细胞?
- 如何改变AlertDialog的主题
- notepad++是否显示所有隐藏字符?
- 在安装pip后,“jupyter:命令未找到”
- 在IPython中自动重载模块
- 去第一行的文件在vim?
- 如何防止谷歌Colab断开连接?
- 如何在notepad++文本编辑器中更改背景颜色?
- 如何在Jupyter Notebook中显示文件中的图像?
- 修改IPython/Jupyter笔记本工作目录
- 在ipython笔记本中测量单元格执行时间的简单方法