ubuntu安装使用basemap遇到的问题
安装
sudo apt-get install mpltoolkits.basemap
问题
1,ImportError: cannot import name ‘is_scalar’
解决
卸载matplotlib高版本
安装matplotlib 2.2版本
pip3 install matplotlib==2.2
2, AttributeError: module ‘pyproj’ has no attribute ‘pyproj_datadir’
解决
卸载pyproj高版本
安装pyproj 1.9.6版本
pip3 install pyproj==1.9.6