Liunx 安装basemap

Posted luochunxi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Liunx 安装basemap相关的知识,希望对你有一定的参考价值。

技术图片

2. 解压 
   tar -zxvf basemap-1.2.1rel.tar.gz
3.  安装依赖包
    
    pip  install numpy  -i  https://mirrors.aliyun.com/pypi/simple

  pip install matplotlib -i https://mirrors.aliyun.com/pypi/simple

pip install pyproj -i https://mirrors.aliyun.com/pypi/simple
    pip  install pyshp  -i  https://mirrors.aliyun.com/pypi/simple
4. 编译安装 geos 库
   cd basemap-1.2.1rel/geos-3.3.3/
   export GEOS_DIR=/usr/local
    ./configure --prefix=$GEOS_DIR
 
    vim include/geos/platform.h
   改:/* #undef HAVE_ISNAN */
   为:#define HAVE_ISNAN 1
    
    make
    make install
5. 安装 basemap
    cd  ..
    python setup.py install
      
6. 测试
    cd examples/
    python simpletest.py

 

查考   https://lumingdong.cn/install-basemap-under-linux.html#comment-201

 

以上是关于Liunx 安装basemap的主要内容,如果未能解决你的问题,请参考以下文章

[python]basemap后安装后hello world代码

ModuleNotFoundError:没有名为'mpl_toolkits.basemap'的模块如何安装底图

Python basemap安装

matplotlib 画图中的basemap安装问题

mac 下 basemap 安装,以及踩的一些小坑

mac 下 basemap 安装,以及踩的一些小坑