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

I want to run my laptops with arguments jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000. Where could I install it in JupyterHub?

+4
source share
2 answers

You need to create a configuration file using this command $ jupyter notebook --generate-config, the answer is in this link

+2
source

Open a command prompt and type

jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000

It should start with a jupyter with a higher data rate.

+1
source

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


All Articles