jupyter-notebook - exceeded - notebookapp iopub_data_rate_limit
Se excedió la velocidad de datos de IOPub en el portátil Jupyter(al ver la imagen) (2)
Me encontré con esto usando
networkx
y
bokeh
Esto funciona para mí en Windows 7 ( tomado de aquí ):
-
Para crear un archivo jupyter_notebook_config.py, con todos los valores predeterminados comentados, puede usar la siguiente línea de comando:
$ jupyter notebook --generate-config
-
Abra el archivo y busque
c.NotebookApp.iopub_data_rate_limit
-
Comente la línea
c.NotebookApp.iopub_data_rate_limit = 1000000
y cámbiela a una tasa predeterminada más alta.c.NotebookApp.iopub_data_rate_limit = 10000000
Esta configuración predeterminada implacable está apareciendo en muchos lugares. Ver problemas de git:
Parece que podría resolverse con la
5.1 release
Actualizar:
Jupyter notebook ahora está en la
versión
5.2.2
.
Este problema debería haberse
jupyter
.
Actualice usando conda o pip.
Quiero ver una imagen en el cuaderno Jupyter. Es un archivo .png de 9.9MB.
from IPython.display import Image
Image(filename=''path_to_image/image.png'')
Me sale el siguiente error:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
Un poco sorprendente e informado en otro lugar .
¿Es esto esperado y hay una solución simple?
(El
--NotebookApp.iopub_data_rate_limit
error sugiere cambiar el límite en
--NotebookApp.iopub_data_rate_limit
).
Prueba esto:
jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
O esto:
yourTerminal:prompt> jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10