我想在 Jupyter 笔记本上查看一张图片,它是一个9.9 MB 的 png 文件。
from IPython.display import Image
Image(filename='path_to_image/image.png')
我得到以下错误:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
有点出乎意料,还有 其他地方报道的。
这是预期的吗? 是否有一个简单的解决方案?
(错误 msg 建议改变 --NotebookApp.iopub_data_rate_limit
的限制。)