我想在Jupyter笔记本中查看图像。这是一个9.9MB的.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.
有点意外,并在其他地方报道。
这是预期的吗,有没有简单的解决方案?
(错误消息建议在中更改限制--NotebookApp.iopub_data_rate_limit
。)