<div dir="ltr"><div>Hi,</div><div><br></div>First, be sure to "pip3 install -U pip" to get latest pip as got some issues with wheels build because was using outdated pip.<br><br>In <a href="https://pypi.org/project/GDAL/">https://pypi.org/project/GDAL/</a>, there is a mention that gdal python bindings have dependencies e.g<br><br>* libgdal (3.2.2 or greater) and header files (gdal-devel)<br>* numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly required, but many examples and utilities will not work without it)<br><br>For 3.1, you will need libgdal 3.1 and headers files<br><br>The alternative to get a recent gdal without pain is to use conda to install the latest version but I do not know the environment around e.g how you need to link to others software you need to use<br><br># With conda already installed<br>conda config --add channels conda-forge<br>conda create --name gdal_latest -y<br>conda activate gdal_latest<br># get a list of available GDAL versions<br>conda search gdal --channel conda-forge<br>conda install -c conda-forge gdal==3.2.2 -y<br><div><br></div><div><br></div><div>Regards</div><div><br></div><div>Thomas<br></div><br></div>