当我从Jupyter主页(New> Terminal)开始终端时,它的宽度为40个字符。可以调整吗?这是在我使用custom.css
更新.container { width:100% !important; }
以允许笔记本单元格扩展到完整浏览器宽度后开始发生的。
答案 0 :(得分:0)
在Jupyter 4.4.0
终端宽度符合.container { width:100% !important; }
中的custom.css
并按预期展开。
答案 1 :(得分:0)
仅在将以下内容放入文件.jupyter / custom / custom.css后,我的Jupyter 4.4.0才能在Chrome上运行。
# the note book page
.notebook_app .container {
width:98%; !important
}
# the terminal page
.terminal-app .container {
width:98%; !important
}
答案 2 :(得分:0)
Jupiter 核心版本 4.6.0,以下无效
.terminal-app .container {
width:98%; !important
}
但以下有效。
.terminal-app #terminado-container {
width: 98%;
}