调整Jupyter终端的宽度

时间:2017-07-07 10:25:59

标签: jupyter-notebook jupyter

当我从Jupyter主页(New> Terminal)开始终端时,它的宽度为40个字符。可以调整吗?这是在我使用custom.css更新.container { width:100% !important; }以允许笔记本单元格扩展到完整浏览器宽度后开始发生的。

3 个答案:

答案 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%;
}