在Jupyter Notebook中正确自动换行的正确配置选项是什么?

时间:2019-11-08 21:42:53

标签: jupyter-notebook

当前,在我的Jupyter Notebook版本中,输出单元格包裹在单词中间,错误地将它们拆分。以下是输出的屏幕截图,您可以在其中看到单词service and installation被拆分,而不是包装到单词之前的下一行。

enter image description here

这是我的~/.jupyter/nbconfig/notebook.json配置文件详细信息。

{
    "MarkdownCell": 
    {
        "cm_config": 
        {
            "lineWrapping": true
        }
    },

    "CodeCell": 
    {
        "cm_config": 
        {
            "lineWrapping": true
        }
    },

    "Cell": 
    {
        "cm_config": 
        {
            "lineNumbers": false,
            "lineWrapping": true
        }
    },

    "codeCellConfig": {
        "lineWrap": "wordWrapColumn",
        "wordWrapColumn": 80
     }

}

我缺少什么使输出正确包装?

0 个答案:

没有答案