如何增加Jupyter笔记本电脑电池的高度

时间:2020-10-02 20:35:56

标签: jupyter-notebook

我正在尝试在jupyter笔记本中可视化长字典。像元高度太小,所以我想增加它。我正在寻找一个可以在同一单元格中写入的简单命令。

1 个答案:

答案 0 :(得分:1)

是的,有一种简单的方法可以做到这一点。

程序基本上是这样的:

  • 1 - 打开文件夹 ~/python-3.9.5.amd64/Lib/site-packages/notebook/static/custom/
  • 2 - 在这个打开的文件夹中,用记事本打开文件 custom.css
  • 3 - 将以下内容添加到此文件中:

.container {
    width: 100% !important;
}   

div.notebook-container {
    width: 100% !important;
    height: fit-content;
}  

div.menubar-container {
    width: 100% !important;
    height: fit-content;
}  

div.maintoolbar-container {
    width: 100% !important;
    height: fit-content;
}  

div.cell.selected {
    border-left-width: 1px !important;  
}

div.output_scroll {
    resize: vertical !important;
}

.output_wrapper .output { 
    overflow-y: visible; 
    height: fit-content; 
}


.output_scroll {
    box-shadow:none !important;
    webkit-box-shadow:none !important;
}

  • 4 - 然后,将修改保存在文件中并打开 Jupyter 笔记本。