I am trying to import a basemap into spyder on a windows machine (64 bit, Python34), but I am getting the following error:
from mpl_toolkits.basemap import Basemap
Traceback (most recent call last):
File "<ipython-input-6-5e6824321d57>", line 1, in <module>
from mpl_toolkits.basemap import Basemap
ImportError: No module named 'mpl_toolkits.basemap'
I am very puzzled because I can easily import it into Python IDLE. I just can't import it into Spyder. Anyone have any suggestions? Thanks in advance.
source
share