python安装geopandas

geopandas安装

直接安装出现问题

直接安装geopandas时会在安装依赖包时出现错误

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

安装依赖包

需要安装gdal、Shapely、Fiona、pyproj
下载对应python版本和系统(32位或64位)的.whl文件
下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/
打开网站之后根据包的名称进行搜索

名称示例(python3.8/64位系统)

GDAL-3.0.4-cp38-cp38-win_amd64.whl
Fiona-1.8.13-cp38-cp38-win_amd64.whl
Shapely-1.7.0-cp38-cp38-win_amd64.whl
pyproj‑2.6.0‑cp38‑cp38‑win_amd64.whl

安装方式

1、按照上面四个包的顺序在cmd命令行中安装:
“pip install .whl文件所在位置”(将文件直接拖拽到install后即可)
2、最后输入

pip install geopandas

即可安装成功

你可能感兴趣的:(搭建环境)