【发布时间】:2017-09-03 10:53:33
【问题描述】:
我想在 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.
有点意外和reported elsewhere.
这是预期的吗?有简单的解决方案吗?
(错误消息提示更改--NotebookApp.iopub_data_rate_limit 中的限制。)
【问题讨论】:
-
有没有办法从笔记本本身增加这个而不是在命令行上更改配置?我在共享环境中工作,无权在命令行上更改 jupyter。
标签: jupyter-notebook ipython jupyter