I want to start my notebooks with jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000
arguments. Where one could set it in JupyterHub?
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
04: "IOPUB data rate exceeded" problem of "jupyter low memory.." in windows:
- open cmd:
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
system will generate "jupyter_notebook_config.py" in path:C:\Users\siege>.jupyter
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
save it
restart jupyter
来源:https://stackoverflow.com/questions/43490495/how-to-set-notebookapp-iopub-data-rate-limit-and-others-notebookapp-settings-in