Skip to content Skip to sidebar Skip to footer

Jupyter Notebook: Change Data Rate Limit Inside Active Notebook

I have a jupyter notebook where an executed cell gives the following error: IOPub data rate exceeded... I understand this is an option: jupyter notebook --NotebookApp.iopub_data_ra

Solution 1:

I would recommend creating an alias jn to launch Jupyter notebook with these settings every time. You do it once for all and do not have to tweak with command line after. Under UNIX system you run in terminal ::

alias jn="jupyter notebook --NotebookApp.iopub_data_rate_limit=2147483647"

To enable this alias at every session you have to append this command line to your shell config file, by default ~/.bash_profile

If you run Windows check the equivalence to aliases

Post a Comment for "Jupyter Notebook: Change Data Rate Limit Inside Active Notebook"