Disable iPython Notebook Autoscrolling

后端 未结 6 2091
深忆病人
深忆病人 2020-12-02 16:28

In iPython Notebook, is it possible to disable the autoscrolling of long outputs? Or at least set a threshold for the output length before autoscrolling sets in?

Tri

6条回答
  •  Happy的楠姐
    2020-12-02 17:18

    This works for me (with no semicolon)

        %%javascript
        IPython.OutputArea.auto_scroll_threshold = 9999
    

提交回复
热议问题