Jupyter Notebook中我的单元格输出在左侧被切断,这遮盖了最左侧的输出。供参考(我还不能发布图片):
https://imgur.com/gallery/rg759nN
有什么解决方法吗?
编辑:感谢下面的Rabbit,该问题似乎是由使用Jupyter Themes提供的备用主题引起的。
答案 0 :(得分:6)
在Jupyter Themes github页面上找到了解决方案:
https://github.com/dunovank/jupyter-themes/issues/288
“在custom.css文件中,我通过将div.out_prompt_overlay.prompt和div.out_prompt_overlay.prompt都更改了:将鼠标的最小宽度和宽度值更改为11.5ex,而不是原始的14.5ex。” / p>
或者我添加了填充:
div.output_area {
display: -webkit-box;
padding: 13px;
}
转到chesterish.css文件(这是我使用的主题),然后使用jupyter主题重新应用该主题。
答案 1 :(得分:0)
(开发人员错过了1个,只放了3px的距离)
答案 2 :(得分:0)
它被作为一个错误提出并予以解决(请参见https://github.com/dunovank/jupyter-themes/issues/273)。正如Ernest在评论中所述:解决方案是升级程序包并再次加载主题,即
pip install --upgrade jupyterthemes
jt -t {theme}
答案 3 :(得分:0)
您需要通过以下方式在命令行中修复容器边距:
jt -m 100
然后:
jupyter notebook
(100对我有好处)