1
0

Merge pull request #9934 from f321x/matplotlib_warning

qt: provide more detailed warning for plot feature, change matplotlib backend
This commit is contained in:
ghost43
2025-06-10 18:41:42 +00:00
committed by GitHub
2 changed files with 9 additions and 7 deletions

View File

@@ -671,13 +671,15 @@ class HistoryList(MyTreeView, AcceptFileDragDrop):
def plot_history_dialog(self):
try:
from electrum.plot import plot_history, NothingToPlotException
except Exception as e:
except ImportError as e:
_logger.error(f"could not import electrum.plot. This feature needs matplotlib to be installed. exc={e!r}")
self.main_window.show_message(
_("Can't plot history.") + '\n' +
_("Perhaps some dependencies are missing...") + " (matplotlib?)" + '\n' +
f"Error: {e!r}"
)
self.main_window.show_message("\n\n".join([
_("This feature requires the 'matplotlib' Python library which is not "
"included in Electrum by default."),
_("If you run Electrum from source you can install matplotlib to use this feature."),
_("It is not possible to install matplotlib inside the binary executables "
"(e.g. AppImage or Windows installation).")
]))
return
try:
plt = plot_history(list(self.hm.transactions.values()))

View File

@@ -5,7 +5,7 @@ from decimal import Decimal
from collections import defaultdict
import matplotlib
matplotlib.use('Qt5Agg')
matplotlib.use('QtAgg')
import matplotlib.pyplot as plt
import matplotlib.dates as md