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

前端 未结 4 2011
悲哀的现实
悲哀的现实 2020-12-30 04:01

I want to start my notebooks with jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000 arguments. Where one could set it in JupyterHub?

4条回答
  •  悲哀的现实
    2020-12-30 04:30

    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

提交回复
热议问题