Qgridder icon indicating copy to clipboard operation
Qgridder copied to clipboard

cannot import name NavigationToolbar2QTAgg in Qgis 2.16 Nodebo

Open blabarthe opened this issue 8 years ago • 1 comments

Since Matplotlib 1.5.0 NavigationToolbar2QTAgg has been removed, thus Qgridder plugin cannot be loaded in Qgis 2.16 Nodebo. Do you know what to do to fix this bug ? Best regards Baptiste Labarthe

blabarthe avatar Aug 09 '16 15:08 blabarthe

Hey to solve this Problem rename the import command in the mplwidget.py data as follow:

from matplotlib.backends.backend_qt4agg import NavigationToolbar2QTAgg to from matplotlib.backends.backend_qt4agg import NavigationToolbar2QT works fine with my QGIS 2.18

Best regards

till90 avatar Nov 20 '17 16:11 till90