ipython - IOPub data rate exceeded when viewing image in Jupyter notebook -
i want view image in jupyter notebook. it's 9.9mb .png file.
from ipython.display import image image(filename='path_to_image/image.png') i below error:
iopub data rate exceeded. notebook server temporarily stop sending output client in order avoid crashing it. a bit surprising , reported elsewhere.
is expected , there simple solution?
(error msg suggests changing limit in --notebookapp.iopub_data_rate_limit.)
i ran using networkx , bokeh
this works me in windows 7 (taken here):
to create jupyter_notebook_config.py file, defaults commented out, can use following command line:
$ jupyter notebook --generate-configopen file , search
c.notebookapp.iopub_data_rate_limitcomment out line
c.notebookapp.iopub_data_rate_limit = 1000000, change higher default rate. l usedc.notebookapp.iopub_data_rate_limit = 10000000
this unforgiving default config popping in lot of places. see git issues:
it looks might resolved 5.1 release
Comments
Post a Comment