1. 为确保安装成功,需要保证自己的pip更新到最新版本,详细更新过程可参考:
python -m pip install --upgrade pip
2. 下载GDAL的.whl文件,以及FIONA的.whl文件,可访问以下链接:
https://www.lfd.uci.edu/~gohlke/pythonlibs/#gdal
(选择下载对应于python版本以及系统位数的.whl文件)
3. 先安装GDAL的.whl文件,后安装FIONA的.whl文件:
打开CMD,输入pip install +.whl 文件的位置(可直接将文件拖到install后面)
4. 克隆GitHub存储库中的geopandas库:同样是在CMD中输入
git clone https://github.com/geopandas/geopandas.git
5. 定位到geopandas库的位置:
cd geopandas
6. 安装geopandas:
pip install geopandas
7. 安装成功!!