本文介绍了底图ImportError:没有名为'mpl_toolkits.basemap'的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
from mpl_toolkits.basemap import Basemap
给予
ImportError: No module named 'mpl_toolkits.basemap'
我用conda安装了底图
I installed basemap with conda
wayne@dors:~$ conda install basemap
Solving environment: done
# All requested packages already installed.
我正在运行ubuntu 15.04,Python3.4,matplotlib 2.1.1,numpy 1.8.2
我该如何解决?
I am running ubuntu 15.04, Python3.4, matplotlib 2.1.1, numpy 1.8.2
How do I fix?
推荐答案
尝试使用以下命令进行安装:
Try to install it with this command:
conda install -c conda-forge basemap
默认情况下仅安装'crude'和'low'分辨率数据集".为了获得高分辨率,您可能需要安装以下内容:
"Only the 'crude' and 'low', resolution datasets are installed by default" .You may need to install the following for high resolution:
conda install -c conda-forge basemap-data-hires
这篇关于底图ImportError:没有名为'mpl_toolkits.basemap'的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!