Jupyter notebook --NotebookApp.iopub_data_rate_limit = 10000000 does not work

I encountered this error

IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.

And after a minute of searching on Google, it was found that the solution is similar to running jupyter with jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000

However, when I do this using Anaconda Prompt, it opens another jupyter window with a different list of files (this looks like system files, stuff with the .exe extension). This is my existing Jupyter laptop and the Jupyter lab does not report an increased data rate limit, and Anaconda Prompt returns permission errors if I try to open any of the files, add something new, or load existing jupyter laptops.

I can not find any documentation about this - any ideas on how to fix it?

+4
source
1

jupyter, , . URL- , , "localhost" . "localhost: 8888", "localhost:".

-

jupyter notebook --generate-config

~/.jupyter/jupyter_notebook_config.py, , , . NotebookApp.iopub_data_rate_limit , .

.

0

Source: https://habr.com/ru/post/1688631/


All Articles