I'm using PyCharm Professional's built-in Jupyter Notebook functionality to open .ipynb files in my project.
When I try to print a large dictionary I get the error:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)
Existing answers to this error suggest adding a launch argument when starting the Jupyter Notebook interpreter: https://stackoverflow.com/a/44679222/6008271
However, as this is a built-in server within PyCharm, I'm not sure where to add this. Please can you advise where in PyCharm I add launch arguments for Jupyter?