欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修改JupyterNotebook的字体

程序员文章站 2022-05-30 16:46:27
...

JupyterNotebook默认字体是在浏览器设置的默认字体或宋体,奇丑无比。尝试以下方式修改字体:

修改浏览器默认字体

chrome类浏览器可以在设置->外观->自定义字体中修改浏览器默认字体来改变Notebook中显示的字体
修改JupyterNotebook的字体

修改Notebook的CSS样式文件

如果是anaconda安装,该文件位于
Anaconda安装路径\Lib\site-packages\notebook\static\components\codemirror\lib\codemirror.css

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: 'Courier New';  /* 字体 */
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
相关标签: python