From c0799044918fd07fafbac13e70ca356190bab3be Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Fri, 27 Feb 2026 18:33:39 -0500 Subject: [PATCH] Jupyter scrolling glitch tips (#965) --- setup/02_installing-python-libraries/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup/02_installing-python-libraries/README.md b/setup/02_installing-python-libraries/README.md index 31a3bb4..dec3c09 100644 --- a/setup/02_installing-python-libraries/README.md +++ b/setup/02_installing-python-libraries/README.md @@ -62,6 +62,22 @@ It's also highly recommended to consult the installation guide menu on the offic
+ + +  +## JupyterLab tips + +If you are viewing the notebook code in JupyterLab rather than VSCode, note that JupyterLab (in its default setting) has had scrolling bugs in recent versions. My recommendation is to go to Settings -> Settings Editor and change the "Windowing mode" to "none" (as illustrated below), which seems to address the issue. + + +![Jupyter Glitch 1](https://sebastianraschka.com/images/reasoning-from-scratch-images/bonus/setup/jupyter_glitching_1.webp) + +
+ +![Jupyter Glitch 2](https://sebastianraschka.com/images/reasoning-from-scratch-images/bonus/setup/jupyter_glitching_2.webp) + +
+ ---