From 4281a97b1f76cd0c8ab5250bba74b797cd3431d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20Moritz=20G=C3=BCnther?= Date: Fri, 17 Jul 2020 09:58:10 -0400 Subject: [PATCH] Remove special instructions for IPython 5.0 The installation section still contained a paragraph on working around a specific issue in the notebook 5.0. That issue was fixed in 5.1 and the notebook is actually on version > 6 now, so it seems that that note is no longer needed. This particular notebook workaround is confusing and I personally don't like tinkering with the defaults if I can avoid it because I never know how they impact my other projects or how these changes are carried forward in upgrades. Since this issue seems to be relevant only for a very specific notebook version that is now a thing of the past, I suggest to remove that paragraph. (See links in the removed text to stackoverflow and the related notebook issues that show that the issue was resolved.) --- .../Installing_and_Configuring.ipynb | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/examples/user_guide/Installing_and_Configuring.ipynb b/examples/user_guide/Installing_and_Configuring.ipynb index 4b64985002..3fe9e7ebc7 100644 --- a/examples/user_guide/Installing_and_Configuring.ipynb +++ b/examples/user_guide/Installing_and_Configuring.ipynb @@ -47,26 +47,6 @@ " pip install -e ." ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Jupyter notebook configuration\n", - "\n", - "In version 5.0 of the Jupyter notebook, limits on data rates were added that unfortunately also prevent image output from showing up in many cases. For now, the most effective [fix](https://stackoverflow.com/questions/43288550/iopub-data-rate-exceeded-when-viewing-image-in-jupyter-notebook) is to generate a Jupyter config file:\n", - "\n", - "```\n", - "jupyter notebook --generate-config\n", - "```\n", - "\n", - "and then edit the resulting file (most likely, ~/.jupyter/jupyter_notebook_config.py) with code that changes the limit:\n", - "\n", - "```\n", - "c = get_config()\n", - "c.NotebookApp.iopub_data_rate_limit=100000000\n", - "```" - ] - }, { "cell_type": "markdown", "metadata": {},