Window安装GDAL

在安装完GDAL后,来绑定Python(我安装的是Python10)

下载osgeo库

下载whl

Window安装GDAL绑定Python_python

GDAL‑3.4.3‑cp310‑cp310‑win_amd64.whl为例。

下载至D:\APP\Develop\Python\Python310\Scripts(一个电脑系统环境变量里有设置过的路径就行)

Window安装GDAL绑定Python_Python_02

安装osgeo库

Window安装GDAL绑定Python_Python_03

在该文件路径下打开命令行窗口,执行命令

pip install GDAL‑3.4.3‑cp310‑cp310‑win_amd64.whl

Window安装GDAL绑定Python_Python_04

如果报is not a supported wheel on this platform错误就表示python版本和GDAL版本不一致导致的。

可以直接使用了

from osgeo import ogr
...