How to set NotebookApp.iopub_data_rate_limit and others NotebookApp settings in JupyterHub?

点点圈 提交于 2019-11-30 12:06:54
Workhorse

Open the command line and enter

jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10

This should start jupyter with the increased data rate.

You have to create config file using this command $ jupyter notebook --generate-config, The answer in this link

Vahab

04: "IOPUB data rate exceeded" problem of "jupyter low memory.." in windows:

  1. open cmd:
  2. in main path:C:\Users\siege> (this is my root path)

    type the command: "jupyter notebook --generate-config"

    the you hav: C:\Users\siege>jupyter notebook --generate-config

  3. system will generate "jupyter_notebook_config.py" in path:C:\Users\siege>.jupyter

  4. open "jupyter_notebook_config.py" find the line

    #c.NotebookApp.iopub_data_rate_limit = 1000000

    uncomment it and change it to:

    c.NotebookApp.iopub_data_rate_limit = 100000000

  5. save it

  6. restart jupyter

https://www.youtube.com/watch?v=B_YlLf6fa5A

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!