如何解决安装basemap出现的问题

今天在看到一篇用Python画一个中国地图的推文(原文地址:https://segmentfault.com/a/1190000010871928)。然而在进行一些库的安装时出现了问题。首先使用Anaconda安装geos库:直接使用

pip install geos

接着需要安装basemap,这里我没有使用文章的方法,从github的setup.py文件来安装,我还是用Anaconda的pip的命令:

pip install basemap

然而出现以下错误

error: Setup script exited with 
Can't find geos library . Please set the
environment variable GEOS_DIR to point to the location
where geos is installed (for example, if geos_c.h
is in /usr/local/include, and libgeos_c is in /usr/local/lib,
set GEOS_DIR to /usr/local), or edit the setup.py script
manually and set the variable GEOS_dir (right after the line
that says "set GEOS_dir manually here".

改为文章中的方法依旧如此。然而我从python官方库网站上:https://www.lfd.uci.edu/~gohlke/pythonlibs/ 上的basemap那里看到了这个要求:

如何解决安装basemap出现的问题_第1张图片

需要pyproj。那好,先安装pyproj看看:

pip install pyproj

安装成功之后再安装basemap,发现成功了。

声明一下:以上pip不能直接安装的话,建议大家先自行下载对应版本的whl文件,然后再在相应路径下进行安装:pip install whl文件名。即可


你可能感兴趣的:(杂七杂八,python学习,可视化,python)