10

I just finished a horrible install of scipy, numpy, and matplotlib on OSX Lion. For some reason, I can't do a:

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3d

Error output is:

Traceback (most recent call last):
  File "3dPlot.py", line 2, in <module>
    from mpl_toolkits.mplot3d import Axes3d
ImportError: cannot import name Axes3d

but I can do:

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import axes3d

Is there a different between Axes3d and axes3d, or is my file just named with a lowercase 'a' for some reason?

The Wind-Up Bird
  • 661
  • 2
  • 7
  • 17

2 Answers2

12

The following two things work for me (watch your capitalization):

from mpl_toolkits.mplot3d import Axes3D
from mpl_toolkits.mplot3d import axes3d

But I get the same error for what you wrote (with the d in 3d in lower case). Note that the two imports that do work are not equivalent.

JoshAdel
  • 62,453
  • 24
  • 136
  • 135
  • Here's a place to install it, https://sourceforge.net/projects/matplotlib/?source=typ_redirect – Tom Jul 11 '16 at 21:35
0
from mpl_toolkits.mplot3d import Axes3D

Please use above command to use the 3D image for an object

taras
  • 5,922
  • 10
  • 36
  • 48