当前,在我的Jupyter Notebook版本中,输出单元格包裹在单词中间,错误地将它们拆分。以下是输出的屏幕截图,您可以在其中看到单词service and installation被拆分,而不是包装到单词之前的下一行。
这是我的~/.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
}
}
我缺少什么使输出正确包装?