We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90dfb0b commit 865e87cCopy full SHA for 865e87c
lib/matplotlib/projections/__init__.py
@@ -59,6 +59,10 @@
59
try:
60
from mpl_toolkits.mplot3d import Axes3D
61
except ImportError:
62
+ import warnings
63
+ warnings.warn("Unable to import Axes3D. This may be due to multiple versions of"
64
+ "Matplotlib being installed (e.g. as a system package and as a pip"
65
+ "package). As a result, the 3D projection is not available.")
66
Axes3D = None
67
68
0 commit comments