From d337110649141a799cf92e2ef1ce2ba8b99c4dae Mon Sep 17 00:00:00 2001 From: jpirnay Date: Wed, 13 May 2026 09:27:29 +0200 Subject: [PATCH] Add info --- scripts/debugging_monitor.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/debugging_monitor.py b/scripts/debugging_monitor.py index 08336cf8..6eeb50f3 100755 --- a/scripts/debugging_monitor.py +++ b/scripts/debugging_monitor.py @@ -60,6 +60,14 @@ def select_matplotlib_backend() -> None: f"\n{Fore.RED}Warning: No interactive Matplotlib backend available. " f"Graph window may not open correctly on this system.{Style.RESET_ALL}" ) + print( + f"{Fore.YELLOW}To enable the graph window, install an interactive backend and restart the script.{Style.RESET_ALL}\n" + " - python3-tk (TkAgg)\n" + " - python3-pyqt5 or python3-pyqt6 (Qt5Agg)\n" + " - python3-pyside2 or python3-pyside6 (QtAgg)\n" + " - python3-gi python3-gi-cairo (GTK3Agg/GTK4Agg)\n" + "If you are using a virtualenv, install the package into the same environment." + ) # Try to import potentially missing packages PACKAGE_MAPPING: dict[str, str] = {